@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #9d4edd;
    --primary-hover: #7b2cbf;
    --secondary-color: #0d0221;
    --accent-color: #c77dff;
    --text-main: #e2e8f0;
    --text-light: #a78bfa;
    --bg-light: #1a0b2e;
    --bg-dark: #0d0221;
    --card-bg: #1a0b2e;
    --white: #ffffff;
    --purple-glow: rgba(157, 78, 221, 0.5);
    --card-shadow: 0 10px 30px rgba(157, 78, 221, 0.3), 0 4px 10px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-glass {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.9), rgba(36, 0, 70, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(157, 78, 221, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

/* Navbar */
.navbar {
    background: rgba(13, 2, 33, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 2, 33, 0.98) !important;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff !important;
}

.navbar-brand .text-primary {
    color: #c77dff !important;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #c77dff !important;
}

.nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border-color: rgba(157, 78, 221, 0.3) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(157, 78, 221, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.offcanvas {
    background: linear-gradient(135deg, #1a0b2e, #240046) !important;
}

.offcanvas-title {
    color: var(--white);
}

.btn-close {
    filter: invert(1);
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
}

.hero-slide {
    position: relative;
    min-height: auto;
    display: flex !important;
    align-items: center;
    outline: none;
    padding: 20px 0;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: kenBurnsZoom 8s ease-in-out infinite alternate;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg,
            rgba(13, 2, 33, 0.95) 0%,
            rgba(13, 2, 33, 0.90) 50%,
            rgba(26, 11, 46, 0.75) 70%,
            rgba(123, 44, 191, 0.50) 85%,
            transparent 100%),
        linear-gradient(135deg,
            rgba(13, 2, 33, 0.85) 0%,
            rgba(26, 11, 46, 0.75) 50%,
            rgba(123, 44, 191, 0.40) 100%);
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(199, 125, 255, 0.3));
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(199, 125, 255, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.hero-badge:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.5), rgba(199, 125, 255, 0.5));
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8), 0 2px 20px rgba(13, 2, 33, 0.9);
}

.gradient-text {
    background: linear-gradient(135deg, #10b981, #3b82f6, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 15px rgba(199, 125, 255, 0.6));
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.5), 0 0 20px rgba(157, 78, 221, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.7), 0 0 30px rgba(157, 78, 221, 0.5);
    color: white;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(199, 125, 255, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(199, 125, 255, 0.3);
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 15px rgba(157, 78, 221, 0.5);
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* Slick Slider Customization */
.slick-dots {
    bottom: 30px;
    z-index: 10;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

.slick-arrow {
    width: 50px;
    height: 50px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.slick-arrow:before {
    font-size: 24px;
    opacity: 1;
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border: none;
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.4), 0 0 15px rgba(157, 78, 221, 0.2);
}

.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: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.4);
}

.btn-outline-secondary {
    border: 2px solid var(--text-main);
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-secondary:hover {
    background: var(--text-main);
    color: white;
    transform: translateY(-2px);
}

/* Navbar Styling */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

/* Sections */
.section-padding {
    padding: 40px 0;
}

/* Section Title Styles */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(199, 125, 255, 0.2));
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(199, 125, 255, 0.3);
    backdrop-filter: blur(10px);
}

.section-title {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.3), transparent);
    opacity: 0.5;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    color: white;
}

.hero-section .lead {
    animation: fadeInUp 1s ease-out;
    color: rgba(255, 255, 255, 0.9);
}

.hero-section .badge {
    animation: fadeInUp 0.6s ease-out;
}

.hero-section img {
    animation: float 6s ease-in-out infinite;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Cards */
.custom-card {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.9), rgba(36, 0, 70, 0.8));
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(199, 125, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-card:hover::before {
    opacity: 1;
}

.custom-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.5), 0 0 40px rgba(157, 78, 221, 0.3);
    border-color: var(--primary-color);
}

/* Service Card Specific Styles */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-arrow {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.service-card-link:hover .service-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
    color: var(--primary-color);
}

.service-card-link:hover .service-card {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.5), 0 0 40px rgba(157, 78, 221, 0.3);
    border-color: var(--primary-color);
}

.service-card-link:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(199, 125, 255, 0.2));
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.custom-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

/* ROI Section */
.bg-secondary {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

.bg-secondary::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2), transparent);
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

/* Counter Cards */
.counter-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(199, 125, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.counter-card:hover::before {
    opacity: 1;
}

.counter-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.counter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

.counter-number {
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.5), rgba(36, 0, 70, 0.5));
}

.portfolio-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(157, 78, 221, 0.6), 0 0 40px rgba(157, 78, 221, 0.3);
    transform: translateY(-15px) scale(1.02);
}

.portfolio-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
    opacity: 0.3;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(13, 2, 33, 0.98), rgba(13, 2, 33, 0.85) 70%, transparent);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.5);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1.1) rotate(5deg);
}

.portfolio-category {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    display: inline-block;
    background: rgba(157, 78, 221, 0.4);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    margin-bottom: 0;
    border: 1px solid rgba(199, 125, 255, 0.4);
}

.portfolio-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-link {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Testimonial Carousel */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-inner {
    padding: 2rem 0;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

/* Testimonials Section */
.testimonial-section {
    background: linear-gradient(135deg, #0d0221 0%, #1a0b2e 100%);
}

.testimonial-slide {
    padding: 0 15px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8), rgba(36, 0, 70, 0.7));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.4);
}

.quote-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.testimonial-rating {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
    text-align: justify;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(199, 125, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    border: 2px solid rgba(199, 125, 255, 0.4);
    flex-shrink: 0;
}

.author-name {
    color: white;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-role {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Slick Slider Arrows for Testimonials */
.testimonial-slider .slick-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonial-slider .slick-arrow:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.testimonial-slider .slick-arrow::before {
    font-size: 1.2rem;
}

.testimonial-slider .slick-prev {
    left: -60px;
}

.testimonial-slider .slick-next {
    right: -60px;
}

/* Slick Dots for Testimonials */
.testimonial-slider .slick-dots {
    bottom: -50px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 12px;
    color: rgba(157, 78, 221, 0.5);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .testimonial-slider .slick-prev {
        left: 10px;
    }

    .testimonial-slider .slick-next {
        right: 10px;
    }
}

/* Offcanvas */
.offcanvas {
    border-left: none;
    width: 300px !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.offcanvas-header {
    padding: 2rem;
}

.offcanvas-body {
    padding: 2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    color: white;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Utility Classes */
.text-light-50 {
    color: rgba(255, 255, 255, 0.7);
}

.ls-1 {
    letter-spacing: 1px;
}

.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-slide {
        min-height: 600px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .custom-card {
        padding: 2rem;
    }

    .hero-slide {
        min-height: 550px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.85rem 1.75rem;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.75rem;
    }

    .slick-arrow {
        display: none !important;
    }
}

.portfolio-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Client Logos Slider */
.clients-section {
    background: linear-gradient(135deg, #0d0221 0%, #1a0b2e 100%);
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    overflow: hidden;
    position: relative;
}

.clients-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #1a0b2e, transparent);
}

.clients-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #1a0b2e, transparent);
}

.clients-slider {
    display: flex;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.clients-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo-item {
    flex-shrink: 0;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    width: 240px;
    height: 130px;
    object-fit: contain;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.6), rgba(36, 0, 70, 0.4));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 16px;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.9), rgba(36, 0, 70, 0.7));
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0d0221 0%, #1a0b2e 100%);
    position: relative;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.6), rgba(36, 0, 70, 0.4));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.3);
}

.faq-button {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(199, 125, 255, 0.1));
    color: var(--accent-color);
}

.faq-button:focus {
    box-shadow: none;
    border: none;
}

.faq-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 1.5rem 1rem 1.5rem;
    padding-left: 2rem;
    padding-top: 1.5rem;
}

.faq-button:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, #611699, var(--primary-color));
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #0d0221 0%, #1a0b2e 100%);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-brand {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    transform: translateY(-3px);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(199, 125, 255, 0.1));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.4);
}

.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.newsletter-form {
    margin-bottom: 1rem;
}

.newsletter-input {
    background: rgba(26, 11, 46, 0.6);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-right: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 12px 0 0 12px;
}

.newsletter-input:focus {
    background: rgba(26, 11, 46, 0.8);
    border-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    border-radius: 0 12px 12px 0;
    padding: 0.75rem 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Counter Section */
.counter-section {
    background: linear-gradient(135deg, #0d0221 0%, #1a0b2e 100%);
}

/* Hero Contact Form */
.hero-form-card {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(36, 0, 70, 0.9));
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), transparent);
    border-radius: 24px;
    pointer-events: none;
}

.hero-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-form-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-form-title i {
    color: var(--accent-color);
}

.hero-form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.hero-contact-form {
    position: relative;
    z-index: 1;
}

.hero-input {
    background: rgba(13, 2, 33, 0.6);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    color: white;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hero-input:focus {
    background: rgba(13, 2, 33, 0.8);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(157, 78, 221, 0.25);
}

.hero-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-submit-btn {
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

@media (max-width: 991px) {
    .hero-form-card {
        margin-top: 3rem;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-form-fixed {
    position: sticky;
    top: 100px;
}

/* Hero Form Overlay - Fixed Position */
.hero-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 100;
    display: flex;
    align-items: center;
}

.hero-form-overlay .container {
    pointer-events: none;
    width: 100%;
}

.hero-form-overlay .row {
    pointer-events: none;
}

.hero-form-overlay .col-lg-5 {
    pointer-events: none;
}

.hero-form-overlay .hero-form-card {
    pointer-events: all;
}

.hero-slider-section {
    position: relative;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Let's Talk Modal */
.lets-talk-modal {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.98), rgba(26, 11, 46, 0.98));
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.lets-talk-modal .modal-header {
    padding: 2rem 2rem 1rem 2rem;
}

.lets-talk-modal .modal-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.lets-talk-modal .modal-body {
    padding: 0 2rem 2rem 2rem;
}

.lets-talk-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.lets-talk-modal .btn-close:hover {
    opacity: 1;
}

.modal-input {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    transition: all 0.3s ease;
}

.modal-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(157, 78, 221, 0.25);
    color: white;
}

.modal-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.4);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Trust Builder Section */
.trust-builder-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

.trust-card {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8), rgba(36, 0, 70, 0.7));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.quote-mark {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-quote {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

.cta-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.8), rgba(26, 11, 46, 0.8));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.cta-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.4);
    transform: translateY(-5px);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.75rem 2rem;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.4);
    color: white;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.98), rgba(26, 11, 46, 0.98));
    border-top: 2px solid rgba(157, 78, 221, 0.3);
}

.final-cta-box {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.8), rgba(26, 11, 46, 0.8));
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.final-cta-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.final-cta-list li {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}


/* Badge Gradient */
.bg-gradient-primary {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(221, 78, 157, 0.2)) !important;
    border: 2px solid rgba(157, 78, 221, 0.5) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.2);
}

.bg-gradient-primary:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(221, 78, 157, 0.3)) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Service Detail Page Styles */

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Service Stats */
.service-stats-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Service Projects */
.service-projects-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-desc {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Service Process */
.service-process-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

.process-step-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.8), rgba(26, 11, 46, 0.8));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.process-step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.4);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1.5rem 0 1rem;
}

.process-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-desc {
    font-size: 0.95rem;
    margin: 0;
}

/* Service Testimonials */
.service-testimonials-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

/* Service Brands */
.service-brands-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

/* Service Pricing */
.service-pricing-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

.pricing-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.8), rgba(26, 11, 46, 0.8));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.4);
    transform: translateY(-10px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-price .period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    color: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.4);
}

/* Service Booking */
.service-booking-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.98), rgba(26, 11, 46, 0.98));
}

.booking-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.8), rgba(26, 11, 46, 0.8));
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 24px;
    padding: 3rem;
}

.booking-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(138, 43, 226, 0.1));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.booking-option:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(138, 43, 226, 0.2));
    transform: translateY(-5px);
    color: white;
}

.booking-option i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-option span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Service Hero Section Improvements */
.service-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.85), rgba(26, 11, 46, 0.85)) !important;
}

.service-hero-content {
    position: relative;
    z-index: 10;
}

.service-hero h1,
.service-hero p,
.service-hero .lead {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Service Hero Distinctive Background */
.service-hero {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%) !important;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.7), rgba(26, 11, 46, 0.7)) !important;
}

/* WhatsApp Testimonials */
.whatsapp-testimonial {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.4);
}

.whatsapp-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* WhatsApp Slider */
.whatsapp-slider {
    padding: 0 15px;
}

.whatsapp-slide {
    padding: 0 10px;
}

.whatsapp-slider .slick-dots {
    bottom: -50px;
}

.whatsapp-slider .slick-dots li button:before {
    color: var(--primary-color);
    font-size: 12px;
}

.whatsapp-slider .slick-dots li.slick-active button:before {
    color: var(--accent-color);
}