/* ==========================================
   RESET & BASE
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5E5BFF;
    --primary-light: #EEF0FF;
    --primary-dark: #4A47D9;
    --secondary: #10B981;
    --gradient-primary: linear-gradient(135deg, #5E5BFF, #10B981);
    --gradient-dark: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light-gray: #f8faff;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(94, 91, 255, 0.10);
    --border-radius: 20px;
    --border-radius-lg: 30px;
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: 'Manrope', sans-serif;
    background: #f0f3fc;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light-custom {
    background: var(--light-gray);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   LOADING OVERLAY
========================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   TOP NAV
========================================== */
.topnav {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topnav i {
    color: var(--secondary);
}

.topnav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topnav .left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topnav .right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topnav .right span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================
   MAIN NAV
========================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-menu a i {
    width: 22px;
    color: var(--primary);
}

.btn-primary-nav {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 91, 255, 0.3);
    color: white;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ==========================================
   HERO SECTION WITH BACKGROUND IMAGE
========================================== */
.hero-section {
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.85), rgba(48, 43, 99, 0.75));
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero .row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-image-wrap {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-image {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 10px solid rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateY(-8deg);
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(94, 91, 255, 0.25);
    cursor: pointer;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(94, 91, 255, 0.35);
    color: var(--primary);
}

.btn-hero-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge .icon-circle {
    background: white;
    color: var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge p {
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================
   SECTION HEADER
========================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.section-header h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.6;
}

/* ==========================================
   SERVICES SECTION WITH IMAGES
========================================== */
.services-section {
    background: white;
    padding: 70px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 0;
    border: 1px solid rgba(94, 91, 255, 0.06);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: white;
    border-color: rgba(94, 91, 255, 0.10);
}

.service-card .service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card .service-body {
    padding: 24px 25px 30px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(94, 91, 255, 0.2);
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.service-card ul li {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.service-card ul li i {
    color: var(--secondary);
    margin-right: 8px;
}

.btn-learn-more {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 91, 255, 0.25);
    color: white;
}

/* ==========================================
   ABOUT SECTION (Slider)
========================================== */
.about-section {
    background: white;
    padding: 70px 0 60px;
}

.about-slider-wrapper {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(94, 91, 255, 0.08);
    margin-bottom: 30px;
    position: relative;
}

.about-slides {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.about-slide {
    padding: 50px 40px 55px;
    text-align: center;
    min-height: 280px;
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    width: 100%;
}

.about-slide.active {
    display: flex !important;
}

.about-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.70);
    border-radius: 28px;
    z-index: 1;
}

.about-slide>* {
    position: relative;
    z-index: 2;
}

.about-slide .icon-big {
    width: 68px;
    height: 68px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 12px 30px rgba(94, 91, 255, 0.3);
}

.about-slide h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.about-slide p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.slider-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(94, 91, 255, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--light-gray);
    padding: 14px 18px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(94, 91, 255, 0.04);
}

.stat-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.stat-icon-box {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(94, 91, 255, 0.18);
}

.stat-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.stat-content p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.3;
}

/* ==========================================
   REVIEWS SECTION - SLIDER
========================================== */
.reviews-section {
    background: var(--light-gray);
    padding: 70px 0;
}

.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.review-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 28px 25px 30px;
    border: 1px solid rgba(94, 91, 255, 0.06);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex: 0 0 calc(33.333% - 16px);
    margin: 0 8px;
    min-width: 280px;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.review-name h6 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.review-name small {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-stars {
    color: #fbbf24;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.review-text {
    color: #4a4a6a;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.reviews-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.reviews-slider-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.reviews-slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.reviews-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ==========================================
   PROJECTS SECTION - SLIDER
========================================== */
.projects-section {
    background: white;
    padding: 70px 0;
}

.projects-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.projects-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.project-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--light-gray);
    border: 1px solid rgba(94, 91, 255, 0.05);
    flex: 0 0 calc(20% - 12px);
    margin: 0 6px;
    min-width: 180px;
}

.project-box:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.project-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-box:hover img {
    transform: scale(1.05);
}

.project-label {
    padding: 10px 14px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    background: white;
    border-top: 1px solid rgba(94, 91, 255, 0.05);
}

.projects-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.projects-slider-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.projects-slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.projects-dots {
    display: flex;
    gap: 8px;
}

.projects-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.projects-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ==========================================
   WHY CHOOSE US
========================================== */
.why-section {
    background: var(--light-gray);
    padding: 70px 0;
}

.why-container {
    max-width: 1250px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 50px 50px 45px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.why-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    background-size: 300% 300%;
    border-radius: 52px;
    z-index: -1;
    animation: borderGlow 6s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.why-row {
    display: flex;
    gap: 35px;
    align-items: stretch;
}

.why-image-col {
    flex: 0 0 32%;
    max-width: 32%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
    background: var(--gradient-primary);
}

.why-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.why-image-col:hover img {
    transform: scale(1.04) rotate(-1deg);
}

.why-image-col::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(94, 91, 255, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.image-badge {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes floatBadge {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.image-badge .big-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.image-badge .label {
    font-size: 0.75rem;
    color: #4a4a6a;
    font-weight: 600;
    margin-left: 4px;
}

.why-cards-col {
    flex: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 20px 16px 18px;
    border: 1px solid rgba(94, 91, 255, 0.05);
    transition: var(--transition);
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: rgba(94, 91, 255, 0.10);
}

.why-card .icon-sm {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    box-shadow: 0 6px 18px rgba(94, 91, 255, 0.18);
    transition: var(--transition);
}

.why-card:hover .icon-sm {
    transform: scale(1.08) rotate(-3deg);
}

.why-card:nth-child(2) .icon-sm {
    background: linear-gradient(135deg, #10B981, #34D399);
}
.why-card:nth-child(3) .icon-sm {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}
.why-card:nth-child(4) .icon-sm {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.why-card:nth-child(5) .icon-sm {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}
.why-card:nth-child(6) .icon-sm {
    background: linear-gradient(135deg, #EC4899, #BE185D);
}

.why-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.why-card p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.why-card .badge-num {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(94, 91, 255, 0.10);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================
   CTA SECTION
========================================== */
.cta-section {
    background: var(--gradient-dark);
    color: white;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cta-light {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-cta-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
    color: var(--primary);
}

.btn-cta-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: #0f0c29;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 350px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: white;
    padding-left: 6px;
}

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

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--secondary);
    width: 20px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-policy-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-policy-links a:hover {
    color: white;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .why-row {
        flex-direction: column;
        gap: 25px;
    }
    .why-image-col {
        flex: 0 0 auto;
        max-width: 100%;
        min-height: 280px;
        width: 100%;
    }
    .why-image-col img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card {
        flex: 0 0 calc(50% - 16px);
    }
    .project-box {
        flex: 0 0 calc(33.33% - 12px);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 4px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        background: transparent;
        display: none;
    }
    .nav-menu li:hover .dropdown-menu {
        display: none;
    }
    .nav-menu li.open .dropdown-menu {
        display: block;
    }

    .topnav .container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero .row {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-slide {
        padding: 35px 20px;
        min-height: 200px;
    }
    .about-slide h3 {
        font-size: 1.5rem;
    }
    .about-slide p {
        font-size: 0.9rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .review-card {
        flex: 0 0 calc(100% - 16px);
    }
    .project-box {
        flex: 0 0 calc(50% - 12px);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .why-card {
        min-height: 120px;
        padding: 16px 12px 14px;
    }
    .why-card h6 {
        font-size: 0.8rem;
    }
    .why-card p {
        font-size: 0.68rem;
    }
    .why-card .icon-sm {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .why-container {
        padding: 30px 20px 25px;
        border-radius: 30px;
    }
    .why-image-col {
        min-height: 200px;
    }
    .why-image-col img {
        height: 200px;
    }
    .image-badge {
        padding: 8px 18px;
        bottom: 15px;
    }
    .image-badge .big-num {
        font-size: 1.1rem;
    }
    .image-badge .label {
        font-size: 0.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-policy-links {
        justify-content: center;
    }
    .cta-row {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        justify-content: center;
    }
    .why-card .badge-num {
        display: none;
    }
    .reviews-slider-controls,
    .projects-slider-controls {
        margin-top: 20px;
    }
    .reviews-slider-btn,
    .projects-slider-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card .service-img {
        height: 140px;
    }
    .about-slide {
        padding: 25px 16px;
        min-height: 170px;
    }
    .about-slide h3 {
        font-size: 1.3rem;
    }
    .about-slide p {
        font-size: 0.8rem;
    }
    .about-slide .icon-big {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .project-box {
        flex: 0 0 calc(50% - 10px);
    }
    .project-box img {
        height: 100px;
    }
    .project-label {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .why-card {
        min-height: 100px;
        padding: 12px 10px 10px;
        border-radius: 14px;
    }
    .why-card h6 {
        font-size: 0.7rem;
    }
    .why-card p {
        font-size: 0.6rem;
        line-height: 1.4;
    }
    .why-card .icon-sm {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 6px;
        border-radius: 8px;
    }
    .why-container {
        padding: 20px 12px 18px;
        border-radius: 20px;
    }
    .why-image-col {
        min-height: 160px;
    }
    .why-image-col img {
        height: 160px;
    }
    .image-badge {
        padding: 4px 12px;
        bottom: 10px;
    }
    .image-badge .big-num {
        font-size: 0.8rem;
    }
    .image-badge .label {
        font-size: 0.5rem;
    }
    .stat-item {
        padding: 10px 14px;
    }
    .stat-icon-box {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .stat-content h4 {
        font-size: 1rem;
    }
    .stat-content p {
        font-size: 0.7rem;
    }
    .review-card {
        padding: 16px 14px;
    }
    .review-avatar {
        width: 40px;
        height: 40px;
    }
    .review-name h6 {
        font-size: 0.85rem;
    }
    .review-text {
        font-size: 0.85rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer {
        padding: 40px 0 0;
    }
    .cta-content h2 {
        font-size: 1.6rem;
    }
    .cta-content p {
        font-size: 0.95rem;
    }
    .btn-cta-light,
    .btn-cta-outline {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    .reviews-slider-btn,
    .projects-slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
/* =========================================================
   READY-MADE SOFTWARE
========================================================= */

.ready-software-section {
    padding: 90px 0;
    background: #f8fafc;
    overflow: hidden;
}


/* SHOWCASE */

.software-showcase {
    position: relative;
    max-width: 1100px;
    margin: 45px auto 0;
}


.software-slider {
    position: relative;
}


.software-slide {
    display: none;
    grid-template-columns: 38% 62%;
    min-height: 500px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}


.software-slide.active {
    display: grid;
    animation: softwareFadeIn 0.5s ease;
}


@keyframes softwareFadeIn {

    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* LEFT SIDE */

.software-slide-image {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 193, 7, 0.20),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #793a85,
            #542968
        );
}


.software-slide-image::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}


.software-slide-image::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
}


.software-icon-large {
    width: 145px;
    height: 145px;
    border-radius: 35px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 65px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}


.software-status {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 3;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
}


.software-status.free {
    background: #28a745;
    color: #ffffff;
}


.software-status.premium {
    background: #ffc107;
    color: #343a40;
}


/* RIGHT CONTENT */

.software-slide-content {
    padding: 48px 50px;
}


.software-number {
    display: inline-block;
    color: #793a85;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}


.software-slide-content h3 {
    margin: 0 0 15px;
    font-size: 31px;
    line-height: 1.2;
    color: #343a40;
    font-weight: 800;
}


.software-description {
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 22px;
}


.software-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 20px;
    margin-bottom: 30px;
}


.software-features div {
    color: #475569;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}


.software-features i {
    color: #28a745;
    margin-top: 3px;
    flex-shrink: 0;
}


.software-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


.software-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 21px;
    background: linear-gradient(
        135deg,
        #793a85,
        #5a2c6a
    );
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}


.software-demo-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(121,58,133,.25);
}


.software-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid #793a85;
    color: #793a85;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}


.software-details-btn:hover {
    background: #793a85;
    color: #ffffff;
}


/* CONTROLS */

.software-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}


.software-slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #793a85;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s ease;
}


.software-slider-btn:hover {
    background: #793a85;
    color: #ffffff;
}


.software-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}


.software-slider-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: #d8dce5;
    cursor: pointer;
    transition: .3s ease;
}


.software-slider-dot.active {
    width: 28px;
    border-radius: 20px;
    background: #793a85;
}


/* =========================================================
   SOFTWARE DEMO BOX
========================================================= */

.software-demo-box {
    margin-top: 65px;
    padding: 42px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(121,58,133,.07),
            rgba(255,193,7,.08)
        );
    border: 1px solid rgba(121,58,133,.10);
}


.software-demo-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}


.software-demo-content .section-tag {
    display: inline-flex;
    margin-bottom: 15px;
}


.software-demo-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: #343a40;
    margin-bottom: 12px;
}


.software-demo-content h3 span {
    color: #793a85;
}


.software-demo-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}


/* FORM */

.software-demo-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}


.demo-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.demo-form-group {
    margin-bottom: 18px;
}


.demo-form-group.full {
    width: 100%;
}


.demo-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #343a40;
    font-size: 13px;
    font-weight: 700;
}


.demo-form-group label span {
    color: #dc3545;
}


.demo-form-group input,
.demo-form-group select,
.demo-form-group textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    transition: .25s ease;
}


.demo-form-group input:focus,
.demo-form-group select:focus,
.demo-form-group textarea:focus {
    border-color: #793a85;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(121,58,133,.08);
}


.demo-form-group textarea {
    resize: vertical;
    min-height: 110px;
}


.demo-form-submit {
    text-align: center;
    margin-top: 5px;
}


.demo-form-submit button {
    border: none;
    padding: 13px 30px;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        #793a85,
        #5a2c6a
    );
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}


.demo-form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(121,58,133,.25);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .software-slide {
        grid-template-columns: 1fr;
    }


    .software-slide-image {
        min-height: 280px;
    }


    .software-slide-image::before {
        width: 210px;
        height: 210px;
    }


    .software-slide-image::after {
        width: 145px;
        height: 145px;
    }


    .software-icon-large {
        width: 105px;
        height: 105px;
        font-size: 45px;
    }


    .software-slide-content {
        padding: 35px;
    }

}


@media (max-width: 600px) {

    .ready-software-section {
        padding: 65px 0;
    }


    .software-slide-content {
        padding: 28px 22px;
    }


    .software-slide-content h3 {
        font-size: 24px;
    }


    .software-features {
        grid-template-columns: 1fr;
    }


    .software-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .software-demo-btn,
    .software-details-btn {
        justify-content: center;
    }


    .software-demo-box {
        padding: 25px 16px;
        margin-top: 45px;
    }


    .software-demo-content h3 {
        font-size: 24px;
    }


    .software-demo-form {
        padding: 20px 15px;
    }


    .demo-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

}
/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-copyright {
    margin: 0;
    padding: 0;

    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;
}


.footer-policy-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 24px;
}


.footer-policy-links a {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;

    text-decoration: none;

    transition: color 0.25s ease;
}


.footer-policy-links a:hover {
    color: #ffffff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
    }


    .footer-policy-links {
        width: 100%;

        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 8px 18px;
    }

}