/* ========================================
   Bomoyi Consulting - Modern Professional Design
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --white-color: #ffffff;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);

    --font-primary: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Section Spacing */
section {
    padding: 100px 0;
    position: relative;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-size: 14px;
    color: var(--gray-color);
    margin-left: 5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -300px;
    right: -300px;
    animation: float 20s infinite ease-in-out;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -200px;
    left: -200px;
    animation: float 15s infinite ease-in-out reverse;
}

.hero-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    top: 50%;
    left: 35%;
    animation: float 25s infinite ease-in-out;
}

/* Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 15s infinite ease-in-out;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 8s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-50px); opacity: 0.6; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
}

.badge-icon {
    color: var(--primary-color);
    font-size: 14px;
    animation: star-spin 3s linear infinite;
}

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

.badge-text {
    font-weight: 700;
    font-size: 14px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--dark-color);
}

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

/* Typing Effect */
.typing-effect {
    min-height: 70px;
}

.cursor {
    color: var(--primary-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 19px;
    color: var(--gray-color);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-color);
    font-size: 18px;
}

.hero-feature span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: float-gentle 6s ease-in-out infinite;
    min-height: 552px;
    display: flex;
    align-items: center;
}

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

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-image-wrapper img {
    width: 100%;
    height: 552px;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-primary);
    opacity: 0.15;
    filter: blur(40px);
    border-radius: 20px;
    z-index: 0;
}

/* Image Badges */
.image-badge {
    position: absolute;
    background: var(--white-color);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    z-index: 3;
    animation: badge-float 3s ease-in-out infinite;
}

.image-badge i {
    font-size: 16px;
}

.badge-1 {
    top: 20px;
    right: -20px;
    color: var(--success-color);
    animation-delay: 0s;
}

.badge-2 {
    bottom: 100px;
    left: -30px;
    color: var(--primary-color);
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    right: -40px;
    color: var(--warning-color);
    animation-delay: 2s;
}

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

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.scroll-down-inner span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-down-inner i {
    color: var(--primary-color);
    font-size: 20px;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-description {
    font-size: 17px;
    color: var(--gray-color);
    line-height: 1.8;
}

/* Search Section */
.search-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.search-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.search-wrapper {
    position: relative;
    z-index: 1;
}

/* Search Stats */
.search-stats {
    background: var(--white-color);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.search-stats .stat-item {
    text-align: center;
    flex: 1;
}

.search-stats .stat-number {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.search-stats .stat-label {
    font-size: 13px;
    color: var(--gray-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.search-stats .stat-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.search-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.search-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.search-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.search-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 60px;
    padding: 10px 10px 10px 32px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.search-box:focus-within {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.search-icon {
    color: #667eea;
    font-size: 22px;
    margin-right: 18px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    color: var(--dark-color);
    background: transparent;
    padding: 12px 0;
    font-weight: 400;
}

.search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    flex-shrink: 0;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateX(3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.search-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.search-btn:hover i {
    transform: translateX(3px);
}

.search-suggestions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.suggestion-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #667eea;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 1);
    color: #764ba2;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.suggestion-item i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .search-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .search-section {
        padding: 60px 0;
        min-height: 450px;
    }

    .search-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .search-content {
        margin-bottom: 35px;
    }

    .search-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .search-subtitle {
        font-size: 16px;
        margin-bottom: 0;
    }

    .search-box {
        flex-direction: column;
        padding: 20px;
        border-radius: 25px;
        max-width: 100%;
    }

    .search-input {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        font-size: 16px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        padding: 16px 32px;
    }

    .search-icon {
        display: none;
    }

    .search-suggestions {
        margin-top: 30px;
        gap: 12px;
        max-width: 100%;
    }

    .suggestion-item {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-section {
        padding: 50px 0;
        min-height: 400px;
    }

    .search-title {
        font-size: 28px;
    }

    .search-subtitle {
        font-size: 15px;
    }

    .search-box {
        padding: 18px;
    }

    .search-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .suggestion-item {
        padding: 10px 18px;
        font-size: 13px;
    }

    .suggestion-item i {
        font-size: 14px;
    }
}

    .search-stats {
        padding: 25px 20px;
        gap: 20px;
    }

    .search-stats .stat-number {
        font-size: 32px;
    }

    .search-stats .stat-label {
        font-size: 11px;
    }
}

/* About Section */
.about {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 500;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text > p {
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-content p {
    font-size: 14px;
    color: var(--gray-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.1);
}

.service-card-inner {
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 20px;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(15px);
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-badge {
    background: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--dark-color);
    font-size: 14px;
}

.service-features li i {
    color: var(--success-color);
    font-size: 16px;
    flex-shrink: 0;
}

.service-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 12px 24px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
    background: var(--gradient-primary);
    color: var(--white-color);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.service-card:hover .service-overlay {
    opacity: 0.02;
}

/* Stats Section */
.stats {
    background: var(--gradient-primary);
    color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Projects Section */
/* ========================================
   PROJECTS SECTION - MODERN BOOTSTRAP DESIGN
   ======================================== */

.projects-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.projects-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 48px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

/* Single project - expand to full width with advanced styling */
.projects-container .new-project-card:only-child {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
}

.projects-container .new-project-card:only-child .project-card-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    align-items: stretch;
}

.projects-container .new-project-card:only-child .project-img-wrapper {
    height: auto;
    min-height: 100%;
    background: #ffffff;
    border-right: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.projects-container .new-project-card:only-child .project-img-wrapper .project-main-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    padding: 10px;
}

.projects-container .new-project-card:only-child .project-info-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.new-project-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(99, 102, 241, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.08);
    position: relative;
}

.new-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.new-project-card:hover::before {
    opacity: 1;
}

.new-project-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 24px 64px rgba(99, 102, 241, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.2);
}

.project-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Project Image Section */
.project-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-main-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-project-card:hover .project-main-img {
    transform: scale(1.05);
    padding: 15px;
}

.project-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(139, 92, 246, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.new-project-card:hover .project-img-overlay {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    z-index: 10;
}

.featured-badge i {
    font-size: 10px;
}

/* Project Info Section */
.project-info-section {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.project-cat-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
}

.project-cat-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.new-project-card:hover .project-cat-badge::before {
    left: 100%;
}

.project-date {
    color: var(--gray-color);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(100, 116, 139, 0.05);
    border-radius: 12px;
}

.project-date i {
    font-size: 12px;
    color: var(--primary-color);
}

.project-title-new {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.new-project-card:hover .project-title-new {
    color: var(--primary-color);
    transform: translateX(4px);
}

.project-description-new {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
}

.project-client {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
    transition: all 0.3s ease;
}

.project-client:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    transform: translateX(4px);
}

.project-client i {
    color: var(--primary-color);
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
}

.project-client span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
}

.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.tech-tag {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    color: var(--primary-color);
    padding: 9px 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.tech-tag:hover::before {
    left: 0;
}

.tech-tag:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

.tech-tag.more-tech {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Project Social Links */
.project-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}

.project-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

/* Active social links */
.social-link-active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.social-link-active:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link-active:hover::before {
    background: var(--primary-color);
    opacity: 0.1;
}

/* Disabled/greyed out social links */
.social-link-disabled {
    background: rgba(100, 116, 139, 0.05);
    color: #cbd5e1;
    border: 2px solid rgba(100, 116, 139, 0.1);
    cursor: not-allowed;
    opacity: 0.5;
}

.social-link-disabled:hover {
    transform: none;
}

.project-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: none;
}

.project-view-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.project-view-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.project-view-btn:hover::before {
    width: 300px;
    height: 300px;
}

.project-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.project-view-btn i {
    transition: transform 0.3s ease;
}

.project-view-btn:hover i {
    transform: translateX(6px);
}

.project-link-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(99, 102, 241, 0.15);
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.project-link-icon:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
    border-color: transparent;
}

/* No Projects Message */
.no-projects-message {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.no-projects-message i {
    font-size: 80px;
    color: var(--gray-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.no-projects-message h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.no-projects-message p {
    color: var(--gray-color);
    font-size: 16px;
}

/* Projects Responsive Styles */
@media (max-width: 1200px) {
    .projects-section {
        padding: 100px 0;
    }

    /* Reduce decorative element sizes */
    .projects-section::before,
    .projects-section::after {
        width: 400px;
        height: 400px;
    }

    .projects-container {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 32px;
    }

    /* Single project tablet layout */
    .projects-container .new-project-card:only-child {
        max-width: 850px;
    }

    .projects-container .new-project-card:only-child .project-card-inner {
        grid-template-columns: 350px 1fr;
    }

    .projects-container .new-project-card:only-child .project-img-wrapper {
        min-height: 350px;
    }

    /* Maintain glassmorphism on tablets */
    .new-project-card {
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 992px) {
    .projects-section {
        padding: 80px 0;
    }

    /* Adjust decorative elements for better performance */
    .projects-section::before,
    .projects-section::after {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
        background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
    }

    /* Hide decorative pseudo-elements on mobile for performance */
    .projects-section::before,
    .projects-section::after {
        display: none;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    /* Single project mobile layout */
    .projects-container .new-project-card:only-child {
        max-width: 100%;
    }

    .projects-container .new-project-card:only-child .project-card-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .projects-container .new-project-card:only-child .project-img-wrapper {
        grid-row: 1;
        height: 280px;
        min-height: unset;
    }

    .projects-container .new-project-card:only-child .project-info-section {
        padding: 24px;
    }

    /* Optimize cards for mobile */
    .new-project-card {
        border-radius: 16px;
        backdrop-filter: blur(6px);
        box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1),
                    0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .new-project-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15),
                    0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* Reduce gradient border animation complexity */
    .new-project-card::before {
        height: 3px;
    }

    .project-img-wrapper {
        height: 220px;
        border-radius: 12px;
    }

    .project-main-img {
        padding: 15px;
    }

    .project-info-section {
        padding: 24px;
        gap: 12px;
    }

    .project-title-new {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.3px;
    }

    .project-title-new:hover {
        transform: translateX(4px);
    }

    .project-description-new {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Category badge mobile adjustments */
    .category-badge-new {
        font-size: 11px;
        padding: 6px 14px;
    }

    .category-badge-new .shine {
        animation-duration: 3s;
    }

    /* Tech tags mobile optimization */
    .tech-tags-new {
        gap: 8px;
    }

    .tech-tag {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 6px;
    }

    /* Simplify tech tag hover animation on mobile */
    .tech-tag::before {
        opacity: 0.5;
    }

    /* Social links mobile optimization */
    .project-social-links {
        gap: 10px;
        padding: 12px 0;
        justify-content: center;
    }

    .project-social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* Button adjustments for mobile */
    .project-actions {
        flex-direction: column;
        gap: 12px;
    }

    .project-view-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Simplify ripple effect on mobile */
    .project-view-btn .ripple {
        animation-duration: 0.5s;
    }

    .project-link-icon {
        width: 100%;
        height: 44px;
        border-radius: 12px;
    }

    .project-link-icon:hover {
        transform: translateY(-2px) rotate(3deg);
    }

    .featured-badge {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: -0.4px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .projects-container {
        gap: 20px;
    }

    /* Further optimize cards for small mobile */
    .new-project-card {
        border-radius: 14px;
        backdrop-filter: blur(4px);
    }

    .new-project-card::before {
        height: 2px;
    }

    .project-img-wrapper {
        height: 200px;
        border-radius: 10px;
    }

    .project-main-img {
        padding: 12px;
    }

    .project-info-section {
        padding: 20px;
        gap: 10px;
    }

    .project-title-new {
        font-size: 18px;
        font-weight: 700;
    }

    .project-description-new {
        font-size: 13px;
    }

    .project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .category-badge-new {
        font-size: 10px;
        padding: 5px 12px;
    }

    .tech-tags-new {
        gap: 6px;
    }

    .tech-tag {
        font-size: 11px;
        padding: 5px 10px;
        border-radius: 5px;
    }

    /* Disable complex animations on very small screens */
    .tech-tag::before,
    .category-badge-new .shine {
        display: none;
    }

    .project-view-btn {
        padding: 12px 20px;
        font-size: 13px;
        border-radius: 10px;
    }

    .project-link-icon {
        height: 42px;
        font-size: 14px;
    }

    .featured-badge {
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* Technologies Section */
.technologies {
    background: var(--light-color);
}

.technologies-marquee {
    position: relative;
    width: 100%;
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.technologies-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.technologies-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.technologies-track:hover {
    animation-play-state: paused;
}

.technology-logo {
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.technology-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.technology-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.technology-logo:hover img {
    transform: scale(1.05);
}

.technology-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    line-height: 1.2;
}

/* Testimonials Section (keep for backward compatibility) */
.testimonials-marquee {
    position: relative;
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: var(--white-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.marquee-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.marquee-btn:active {
    transform: scale(0.95);
}

.testimonial-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 450px;
    max-width: 450px;
    flex-shrink: 0;
}

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

.testimonial-rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 30px;
    font-style: italic;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 14px;
    color: var(--gray-color);
}

/* Contact Section */
.contact {
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--gray-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Contact Form */
.contact-form {
    flex: 1;
}

.form-card {
    background: var(--white-color);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.form-header h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray-color);
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-label i {
    color: var(--primary-color);
    font-size: 13px;
}

.required {
    color: var(--danger-color);
    font-weight: 700;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
    font-size: 16px;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1;
}

.textarea-icon {
    top: 18px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-control:focus + .input-icon,
.input-group:focus-within .input-icon {
    color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
    padding-top: 16px;
}

.character-count {
    text-align: right;
    font-size: 12px;
    color: var(--gray-color);
    margin-top: 6px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn-secondary {
    background: #e2e8f0;
    color: var(--dark-color);
    border: none;
}

.btn-secondary:hover {
    background: #cbd5e1;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 24px;
    padding: 18px 24px;
    border-radius: 12px;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left: 4px solid var(--success-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-message.success::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
}

.form-message.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left: 4px solid var(--danger-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-message.error::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
}

/* Form Validation Styles */
.form-control.error {
    border-color: var(--danger-color);
    background: #fef2f2;
}

.form-control.success {
    border-color: var(--success-color);
    background: #f0fdf4;
}

@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 28px;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: var(--white-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white-color);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    background: transparent;
    color: var(--white-color);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-color);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--gray-color);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white-color);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-right .btn {
        display: none;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    .marquee-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PROJECT DETAILS MODAL
   ======================================== */

.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
}

.project-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.project-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-modal-close:hover {
    background: var(--danger-color);
    color: white;
    transform: rotate(90deg);
}

.project-modal-body {
    overflow-y: auto;
    max-height: 90vh;
    padding: 40px;
}

.project-modal-body::-webkit-scrollbar {
    width: 8px;
}

.project-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.project-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Loading State */
.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

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

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

.modal-loading p {
    margin-top: 20px;
    color: var(--gray-color);
    font-size: 16px;
}

/* Modal Content */
.modal-project-header {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.modal-project-image {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
}

.modal-project-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-project-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-project-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin: 0;
}

.modal-project-client {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.modal-project-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.modal-detail-section {
    background: var(--light-color);
    padding: 24px;
    border-radius: 16px;
}

.modal-detail-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-detail-section h3 i {
    color: var(--primary-color);
    font-size: 20px;
}

.modal-detail-section p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 15px;
}

.modal-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-tech-list .tech-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
}

.modal-project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-project-link:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.modal-project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 30px;
    border-top: 2px solid var(--light-color);
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: var(--light-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background: var(--gray-color);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .project-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .project-modal-body {
        padding: 24px;
    }

    .modal-project-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .modal-project-image {
        height: 200px;
    }

    .modal-project-title {
        font-size: 24px;
    }

    .modal-project-footer {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .project-modal-close {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
        font-size: 18px;
    }
}


/* ========================================
   SERVICE DETAILS MODAL
   ======================================== */

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
}

.service-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-modal-close:hover {
    background: var(--danger-color);
    color: white;
    transform: rotate(90deg);
}

.service-modal-body {
    overflow-y: auto;
    max-height: 90vh;
    padding: 40px;
}

.service-modal-body::-webkit-scrollbar {
    width: 8px;
}

.service-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.service-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Service Modal Header */
.service-modal-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-color);
}

.service-modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.service-modal-icon i {
    font-size: 48px;
    color: white;
}

.service-modal-info {
    flex: 1;
}

.service-modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.service-modal-subtitle {
    color: var(--gray-color);
    font-size: 16px;
    margin: 0;
}

/* Service Modal Description */
.service-modal-description {
    margin-bottom: 32px;
}

.service-modal-description h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-modal-description h3 i {
    color: var(--primary-color);
    font-size: 22px;
}

.service-modal-description p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 16px;
}

/* Service Modal Features */
.service-modal-features {
    margin-bottom: 32px;
}

.service-modal-features h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-modal-features h3 i {
    color: var(--primary-color);
    font-size: 22px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.feature-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(4px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

.feature-item span {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

/* Service Modal CTA */
.service-modal-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 8px 0;
}

.cta-content p {
    color: var(--gray-color);
    font-size: 15px;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Service Link Button Update */
.service-link-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-link-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.service-link-btn i {
    transition: transform 0.3s ease;
}

.service-link-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Service Modal */
@media (max-width: 768px) {
    .service-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .service-modal-body {
        padding: 24px;
    }

    .service-modal-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .service-modal-icon {
        width: 80px;
        height: 80px;
    }

    .service-modal-icon i {
        font-size: 36px;
    }

    .service-modal-title {
        font-size: 24px;
    }

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

    .service-modal-cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .service-modal-close {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
        font-size: 18px;
    }
}


/* Single Project Link Button */
.project-link-btn-single {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.project-link-btn-single:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.project-link-btn-single i {
    transition: transform 0.3s ease;
}

.project-link-btn-single:hover i {
    transform: translateX(4px);
}

/* Single project actions alignment */
.projects-container .new-project-card:only-child .project-actions {
    justify-content: flex-start;
}

