* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
    scroll-behavior: smooth;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}
.hero-title {
    color: #cdd6ff;
    font-size: 3rem;
    line-height: 1.25;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
        padding: 0 16px;
    }
}

.cursor {
    display: inline-block;
    margin-left: 6px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}


/* Enhanced Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.98);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.dropdown-menu a i {
    color: #667eea;
    font-size: 1rem;
}

.dropdown-menu a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none;
}


.cta-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    padding: 30px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.mobile-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-close:hover {
    background: #667eea;
    transform: rotate(90deg);
}


.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #667eea;
}

.mobile-menu .cta-btn {
    margin-top: 1rem;
    width: 100%;
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0.5rem 0;
}

.mobile-dropdown-menu.active {
    max-height: 500px;
}

.mobile-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.mobile-dropdown-menu a:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu a i {
    color: #667eea;
    font-size: 0.9rem;
}

.mobile-dropdown-menu a:hover {
    color: #667eea;
    padding-left: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
}


/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    margin-top: 80px;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.secondary-btn {
    background: transparent;
    border: 2px solid #667eea;
    color: #fff;
}

.secondary-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-3px);
}

/* Section Common Styles */
section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* About Section */
.about {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Services Section - Card Slider */

.services {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
}

.services-slider {
    position: relative;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 25px;
    padding: 20px;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-card.active {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: #667eea;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.service-features li i {
    color: #667eea;
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover:not(:disabled) {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(102, 126, 234, 0.8);
}

/* Card indicator */
.card-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}


/* Auto-play toggle */
.autoplay-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.toggle-autoplay {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-autoplay.active {
    background: rgba(102, 126, 234, 0.5);
}

.toggle-circle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.toggle-autoplay.active .toggle-circle {
    left: 22px;
    background: #667eea;
}




/* Why Choose Us Section - Enhanced */
.why-us {
    background: rgba(10, 10, 10, 0.8);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.highlight {
    color: #667eea;
    font-weight: 600;
}

.floating-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.floating-bg:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-bg:nth-child(2) {
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    animation-delay: -5s;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #667eea;
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

/* Why Feature Cards */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.why-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(102, 126, 234, 0.1) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.why-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #667eea;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
}

.why-feature-card:hover::before {
    background: linear-gradient(135deg, transparent 30%, rgba(102, 126, 234, 0.2) 100%);
}

.why-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-card-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.why-card-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.why-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    transition: color 0.3s;
}

.why-feature-card:hover .why-card-content h3 {
    color: #667eea;
}

.why-card-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: -22px;
    flex-grow: 1;
}

.why-card-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.why-stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    flex: 1;
    transition: all 0.3s;
}

.why-feature-card:hover .why-stat-item {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-5px);
}

.why-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.why-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Statistics Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-column h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
}

.comparison-item {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s;
}

.comparison-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(10px);
}

.comparison-item h4 {
    color: #667eea;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Process Flow */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 1;
    transform: translateX(-50%);
}

.process-step:last-child::before {
    display: none;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.process-step:hover .step-circle {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Why CTA Section */
.why-cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
}

.why-cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.why-cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid #667eea;
    color: #fff;
}

.cta-btn-secondary:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-5px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -20px);
    }

    50% {
        transform: translate(-15px, 15px);
    }

    75% {
        transform: translate(10px, -10px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.5));
}

/* Projects Section */
.projects {
    background: rgba(10, 10, 10, 0.7);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-img {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.project-info {
    padding: 2rem;
}

/* Testimonials */
.testimonials {
    background: rgba(10, 10, 10, 0.8);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin: 0 1rem;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* FAQ Section */
.faq {
    background: rgba(10, 10, 10, 0.7);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: rgba(255, 255, 255, 0.7);
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background: rgba(5, 5, 5, 0.95);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-column h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-cta-group {
    display: flex;
    gap: 15px;
}

.footer-cta-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-link i {
    color: #667eea;
    transition: transform 0.3s;
}

.footer-cta-link:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.footer-cta-link:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Blog Preview Section */
.blog-preview {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    padding: 6rem 5%;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.blog-preview-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.blog-preview-card:hover {
    transform: translateY(-15px);
    border-color: #667eea;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
}

.blog-card-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.blog-category {
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.blog-featured {
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.5s ease;
    position: relative;
}

.blog-image-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
}

.blog-preview-card:hover .blog-image-gradient {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-preview-card:hover .blog-card-title {
    color: #667eea;
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: #fff;
}

.blog-author span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.blog-read-more {
    padding: 10px 25px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
    border-radius: 50px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.blog-read-more:hover {
    background: #667eea;
    color: #fff;
    transform: translateX(5px);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-cta-container {
    text-align: center;
    margin-top: 50px;
}

.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.blog-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.blog-view-all i {
    transition: transform 0.3s ease;
}

.blog-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive Blog Cards */
@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-card-title {
        font-size: 1.4rem;
    }

    .blog-card-content {
        padding: 25px;
    }

    .blog-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .blog-read-more {
        width: 100%;
        justify-content: center;
    }
}

/* Testimonials Slider */
/* Testimonials Section */
.rt-testimonials{
  padding: 90px 0;
  background: 
              #06070b;
  color:#fff;
  overflow:hidden;
}

.rt-t-head{ text-align:center; margin-bottom:30px; }
.rt-title{ font-size: clamp(26px, 3vw, 40px); font-weight:800; letter-spacing:.3px; }
.rt-subtitle{ max-width: 800px; margin:10px auto 0; color: rgba(255,255,255,.72); }

/* Slider shell */
.rt-t-slider{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top: 24px;
}

/* Track wrap masks the overflow */
.rt-track-wrap{
  overflow:hidden;
  width:100%;
  padding: 18px 0;
}

/* Track */
.rt-track{
  display:flex;
  gap:22px;
  will-change: transform;
  transition: transform .55s cubic-bezier(.2,.9,.2,1);
}

/* Card sizing: responsive cards-per-view */
.rt-card{
  flex: 0 0 calc((100% - 44px) / 3); /* desktop: 3 cards */
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 26px 26px 22px;
  position:relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  transform: translateZ(0);
}

/* Hover glow like screenshot */
.rt-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 24px;
  background: radial-gradient(400px 180px at 35% 10%, rgba(120,90,255,.45), transparent 60%),
              radial-gradient(300px 180px at 75% 85%, rgba(70,140,255,.25), transparent 65%);
  opacity:0;
  transition: opacity .35s ease;
  pointer-events:none;
  z-index:0;
}

.rt-card:hover::before{ opacity:1; }
.rt-card:hover{
  border-color: rgba(140,110,255,.55);
  box-shadow: 0 16px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(140,110,255,.25);
}

.rt-card > *{ position:relative; z-index:1; }

.rt-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom: 10px;
}

.rt-stars{
  color:#ffd54a;
  font-size: 18px;
  letter-spacing: 2px;
  user-select:none;
}

.rt-quote-mark{
  color: rgba(120,90,255,.32);
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-8px);
}

.rt-text{
  color: rgba(255,255,255,.78);
  font-style: italic;
  line-height: 1.8;
  font-size: 16px;
  min-height: 140px; /* keeps cards aligned */
}

.rt-divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin: 18px 0;
}

.rt-person{
  display:flex;
  align-items:center;
  gap:14px;
}

.rt-avatar{
  width:58px;
  height:58px;
  border-radius: 50%;
  display:grid;
  place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(120,90,255,.95), rgba(90,140,255,.85));
  box-shadow: 0 12px 30px rgba(120,90,255,.18);
}

.rt-meta h4{
  margin:0;
  font-weight:800;
  font-size: 18px;
}
.rt-meta p{
  margin:4px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

.rt-icon{
  margin-left:auto;
  font-size: 22px;
  opacity:.9;
}

/* Nav Buttons */
.rt-nav{
  width:54px;
  height:54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-size: 34px;
  line-height: 1;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}

.rt-nav:hover{
  transform: translateY(-1px);
  background: rgba(120,90,255,.18);
  border-color: rgba(140,110,255,.55);
}

.rt-nav:disabled{
  opacity:.35;
  cursor:not-allowed;
}

/* Dots */
.rt-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top: 18px;
  flex-wrap:wrap;
}

.rt-dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.10);
  cursor:pointer;
  transition: width .25s ease, background .25s ease, border-color .25s ease;
}

.rt-dot.active{
  width:28px;
  background: rgba(120,90,255,.85);
  border-color: rgba(140,110,255,.65);
}

/* Responsive: 2 cards */
@media (max-width: 992px){
  .rt-card{ flex-basis: calc((100% - 22px) / 2); }
  .rt-text{ min-height: 130px; }
}

/* Responsive: 1 card */
@media (max-width: 576px){
  .rt-t-slider{ gap:10px; }
  .rt-nav{ width:46px; height:46px; font-size:30px; }
  .rt-card{ flex-basis: 100%; padding: 22px; }
  .rt-text{ min-height: 0; }
}


/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    z-index: 1;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.testimonial-star {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: #667eea;
    font-size: 2rem;
    font-weight: bold;
}

/* Client Info */
.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card .client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    color: #fff;
}

.testimonial-card .client-details h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-card .client-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.testimonial-company-logo {
    margin-left: auto;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.testimonial-card:hover .testimonial-company-logo {
    color: #667eea;
    transform: scale(1.1);
}

/* Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-control-btn:hover:not(:disabled) {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    transform: scale(1.1);
}

.testimonial-control-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(102, 126, 234, 0.8);
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
    .testimonials-slider-track .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 320px;
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 5%;
    }

    .testimonials-slider-track {
        gap: 15px;
        padding: 5px;
    }

    .testimonials-slider-track .testimonial-card {
        flex: 0 0 calc(100% - 10px);
        min-width: 280px;
        max-width: calc(100% - 10px);
        padding: 25px;
    }

    .testimonial-quote-icon {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 1.5rem;
    }

    .testimonial-rating {
        margin-bottom: 20px;
    }

    .testimonial-star {
        font-size: 1rem;
    }

    .testimonial-card .client-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .testimonial-card .client-details h4 {
        font-size: 1.1rem;
    }

    .testimonial-card .client-details p {
        font-size: 0.9rem;
    }

    .testimonial-company-logo {
        font-size: 1.5rem;
    }

    .testimonials-controls {
        gap: 20px;
        margin-top: 30px;
    }

    .testimonial-control-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-track .testimonial-card {
        padding: 20px;
        min-width: 250px;
    }

    .testimonial-quote-icon {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .testimonial-card .client-info {
        flex-wrap: wrap;
        gap: 15px;
    }

    .testimonial-card .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .testimonial-card .client-details h4 {
        font-size: 1rem;
    }

    .testimonial-card .client-details p {
        font-size: 0.85rem;
    }

    .testimonial-company-logo {
        margin-left: 0;
        font-size: 1.3rem;
    }

    .testimonial-control-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}


/* CTA Section with Background */
.new-section {
    width: 90%;
    max-width: 1400px;
    margin: 4rem auto;
    position: relative;
    background: url(../images/bg.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 350px;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 40px;
    overflow: hidden;
}

.new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.25) 100%);
    z-index: 1;
}

.new-section * {
    position: relative;
    z-index: 2;
}

.new-section h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.new-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .new-section {
        width: 95%;
        margin: 2rem auto;
        min-height: 300px;
        padding: 4rem 5%;
        background-attachment: scroll;
        border-radius: 30px;
    }

    .new-section h3 {
        font-size: 2rem;
    }

    .new-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .new-section {
        width: 100%;
        margin: 1rem 0;
        min-height: 250px;
        padding: 3rem 5%;
        border-radius: 0;
    }

    .new-section h3 {
        font-size: 1.8rem;
    }

    .new-section p {
        font-size: 0.95rem;
    }
}

.bread-sec {
    margin: 148px 0 100px;
}

.ab>h1 {
    font-size: 65px;
}

.ab {
    text-align: center;
}

.ab>a {
    text-decoration: none;
    font-weight: 600;
}

.ab>span>a {
    text-decoration: none;
    font-weight: 600;
}

@media (max-width:786px) {
    .ab>h1 {
        font-size: 40px;
    }

    .bread-sec {
        padding-top: 20px;
    }

    .bread-sec {
        margin: 148px 0 100px;
    }

    .about-text h2 {
        font-size: 23px;
    }

}
.slider-container {
    position: relative;
    overflow: hidden; /* hides overflowing cards */
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    flex: 0 0 calc(100% / 3 - 20px); /* 3 cards per view with gap */
    margin-right: 15px;
    box-sizing: border-box;
}
/* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Slider Track */
.slider-track {
    display: flex;
    gap: 11px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition */
    will-change: transform; /* Performance optimization */
}

/* Service Card */
.service-card {
    flex: 0 0 calc(33.333% - 17px); /* 3 cards with gap */
    min-width: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Responsive card sizing */
@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 calc(50% - 13px); /* 2 cards with gap */
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%; /* 1 card */
    }
}

/* Dots container */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* Individual dot */
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #007bff;
    transform: scale(1.2);
}

/* Navigation buttons */
.slider-nav-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev {
    left: 10px;
}

.slider-nav-btn.next {
    right: 10px;
}

/* Autoplay toggle */
.autoplay-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.autoplay-toggle.active {
    color: #007bff;
}
/* Adjust for tablets */
@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 calc(100% / 2 - 15px);
    }
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .service-card {
        flex: 0 0 calc(100% - 10px); /* full width */
        margin-right: 10px;
    }
}

.service-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}
.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}
.process-timeline-wrap{
  padding: 40px 0;
}

.process-timeline{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 10px;
}

/* the horizontal line */
.process-timeline::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 34px;                 /* aligns with center of circles */
  height: 2px;
  background: linear-gradient(90deg, #7c5cff, #3b82f6, #a855f7);
  opacity: .75;
}

.p-step{
  flex: 1;
  min-width: 200px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.p-node{
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #fff;
  font-size: 24px;

  /* node look like screenshot */
  background: radial-gradient(circle at 30% 30%, #a78bfa, #6d28d9);
  box-shadow: 0 10px 25px rgba(109, 40, 217, 0.35);
  position: relative;
}

/* optional subtle ring */
.p-node::after{
  content:"";
  position:absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, .35);
}

.p-step h4{
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

.p-step p{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.70);
  margin: 0;
  max-width: 320px;
  margin-inline: auto;
}

/* ✅ Responsive */
@media (max-width: 992px){
  .process-timeline{
    flex-wrap: wrap;
  }
  .process-timeline::before{
    left: 10%;
    right: 10%;
  }
  .p-step{
    flex: 0 0 calc(50% - 14px);
  }
}

@media (max-width: 576px){
  .process-timeline{
    flex-direction: column;
    gap: 22px;
  }
  .process-timeline::before{
    display:none; /* line off on mobile to avoid ugly break */
  }
  .p-step{
    flex: 1 1 auto;
  }
}
