/* ===== START OF style.css ===== */
/* Reset and Base Styles */
:root {
    --primary: #1eb178;
    --primary-dark: #119b28;
    --primary-light: #1e660a;
    --green: #74f199;
    --secondary: #0f172a;
    --accent: #30ded0;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e5e7eb;
    --dark: #1e293b;
    --transition: all 0.4s ease;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 20px;
}

.container h2 {
    color: var(--dark);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    /* color: var(--light); */
}

h2 {
    font-size: 2rem;
    /* color: var(--dark); */
    position: relative;
    padding-bottom: 0.5rem;
}

/* h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
} */

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: inherit;
}

.text-center {
    text-align: center;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #0da271;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 40px;
    width: auto;
    transition: var(--transition);
    padding: 0 10px;
}

.logo:hover .logo-image {
    transform: translateY(-2px);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav>ul>li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}



nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
nav ul li.dropdown {
    position: relative;
    padding: 10px 0;
}

.dropdown-menu {
    position: absolute;
    top: 46px;
    left: 0;
    background: rgb(255, 255, 255);
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 230px;
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    width: 100%;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

/* Hover show on desktop */
nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile dropdown support */
nav ul.show .dropdown-menu {
    position: relative;
    box-shadow: none;
    background: transparent;
}


.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

/* .cta-button:hover::before {
    left: 100%;
} */

.cta-button.primary:hover {
    /* Scale the button up by 2% */
    background-color: rgba(21, 165, 117, 0.733);
}

.cta-button.primary {
    background: var(--primary);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.outline:hover {
    background: var(--primary);
    color: white;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Floating Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 100px;
    right: -88px;
    z-index: 1000;
    transition: all 0.3s ease-in;
}

.floating-quote-btn:hover {
    right: 22px;
    transition: all 0.3s ease-out;
}

.quote-btn {

    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #119b28;
    color: white;
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(90, 10, 10, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
    transition: 0.3s ease-in-out;
    position: relative;
    left: 23px;
    overflow: hidden;
}

.quote-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(29, 2, 2, 0.6);
}

.quote-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 20, 20, 0.2), transparent);
    transition: left 0.5s;
}

.quote-btn:hover::after {
    left: 120%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-section,
.hero-section p {
    color: #f1f5f9;
    /* light gray / white */
}


.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.7) 0%, rgba(4, 120, 87, 0.8) 50%, rgba(6, 95, 70, 0.9) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-title .highlight {
    color: #fef3c7;
    background: linear-gradient(135deg, #fef3c7, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fef3c7, #f59e0b);
    transform: scaleX(0);
    animation: underlineReveal 0.8s ease 1s forwards;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineReveal {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
    color: white;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.floating-card h4 {
    font-size: 0.9rem;
    color: white;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.card-4 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 10px;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.section-label {
    display: inline-block;
    background: rgb(254, 150, 81);
    color: #fff;
    padding: 2px 20px;
    padding-bottom: 5px;
    border-radius: 15px 0 15px 0;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    padding-top: 20px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 40px 0;
    background: rgb(200, 229, 222);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.feature h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.feature p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 1rem;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.badge-content {
    text-align: center;
}

.years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.label {
    font-size: 0.8rem;
    opacity: 0.9;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Services Section */
.services-section {
    padding: 40px 0 0;
    background: linear-gradient(45deg, #03a0e370, transparent);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.services-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 50px;
    /* border-radius: var(--radius-lg); */
    text-align: center;
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.services-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* --- TECHNOLOGY SECTION  --- */
/* Technology Tabs - Styled like Solutions tabs but with unique classes */
.tech-tabs-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.tech-tab-buttons {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.tech-tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tech-tab-button i {
    margin-right: 8px;
}

.tech-tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: white;
}

.tech-tab-button:hover:not(.active) {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

.tech-tab-content {
    padding: 0;
}

.tech-tab-pane {
    display: none;
    padding: 30px;
    animation: fadeIn 0.5s ease;
}

.tech-tab-pane.active {
    display: block;
}

/* Technology Slider Container */
.tech-slider-container {
    width: 100%;
    overflow: hidden;
}

/* Tech Grid Slider Animation */
.tech-grid.slider {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll-tech 30s linear infinite;
    padding: 10px 0;
}

/* Pause animation on hover */
.tech-grid.slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-tech {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Tech Items in Slider */
.tech-grid.slider .tech-item {
    min-width: 140px;
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-grid.slider .tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.tech-grid.slider .tech-icon {
    font-size: 2.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-grid.slider .tech-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-tab-button {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .tech-tab-button i {
        margin-right: 5px;
        font-size: 1rem;
    }

    .tech-grid.slider .tech-item {
        min-width: 120px;
        padding: 15px 10px;
    }

    .tech-grid.slider .tech-icon {
        font-size: 2rem;
        height: 50px;
    }

    .tech-grid.slider .tech-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .tech-tab-buttons {
        flex-wrap: wrap;
    }

    .tech-tab-button {
        flex: 0 0 50%;
    }
}




/* Solutions Section */
.solutions-section {
    padding: 40px 0;
    background: #f8fafc;
}

.solutions-tabs {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tab-buttons {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: white;
}

.tab-button:hover:not(.active) {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

.tab-content {
    padding: 0;
}

.tab-pane {
    display: none;
    padding: 0;
}

.tab-pane.active {
    display: block;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
    padding: 50px;
}

.solution-text h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.solution-text p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.solution-features {
    margin-bottom: 30px;
}

.solution-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.solution-features .feature i {
    color: var(--primary);
}

.solution-features .feature span {
    color: var(--dark);
    font-weight: 500;
}

.solution-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.solution-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.solution-visual:hover img {
    transform: scale(1.05);
}

/* Portfolio Section */
.portfolio-section {
    padding: 40px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition);
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.portfolio-link:hover {
    gap: 12px;
}

.portfolio-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
    background: #ffffff;
}

.testimonials-slider {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.testimonial-slide {
    flex: 0 0 320px;
    opacity: 0.6;
    transform: scale(0.85);
    filter: blur(2px);
    transition: all 0.6s ease;
    min-width: 500px;
    /* max-height: 300px; */
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0);
    z-index: 2;
}

.testimonial-slide.left {
    order: 1;
}

.testimonial-slide.active {
    order: 2;
}

.testimonial-slide.right {
    order: 3;
}

.testimonial-slide.left,
.testimonial-slide.right {
    opacity: 0.6;
    transform: scale(0.85) translateY(10px);
}

.testimonial-content {
    backdrop-filter: blur(10px);
    padding: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    background-color: rgb(213, 245, 227);
    border-radius: 30px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--gray);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonials-section p {
    color: #64748b;
    /* soft gray */
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    background: white;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.method-details h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.method-details p {
    color: var(--gray);
}

.social-links h4 a {
    color: var(--secondary);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    transition: var(--transition);
}

/* .social-icons a:nth-child(1):hover {
    background-color: #1877F2;
}
.social-icons a:nth-child(2):hover {
    background-color: black;
}
.social-icons a:nth-child(3):hover {
    background-color: rgb(245, 27, 63);
}
.social-icons a:nth-child(4):hover {
    background-color: #1877F2;
}
.social-icons a:nth-child(5):hover {
    background-color: red;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
} */

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    outline: none;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--gray);
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 20px;
    /* text-align: center; */
}

.footer p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-column p {
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form .input-group {
    display: flex;
    align-items: stretch;
    margin-top: 15px;
    max-width: 300px;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    outline: none;
    font-size: 0.95rem;
    min-width: 0;
    background: white;
    box-shadow: var(--shadow);
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    width: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: var(--shadow);
}

.newsletter-form button i {
    font-size: 1rem;
}

.newsletter-form input:focus {
    border-color: rgb(1, 255, 128);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 20px;
}

.footer-bottom .footer-links a {
    color: #94a3b8;
}

.footer-bottom .footer-links a:hover {
    color: white;
    padding-left: 0;
}




/* Header - Common for all services */
.service-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.service-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.header-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.25rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.header-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.header-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ========== App Development Specific Styles ========== */
/* App Categories - App Development only */
.app-categories {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-item i {
    font-size: 2.5rem;
    color: rgb(11, 131, 179);
    margin-bottom: 1rem;
}

/* ========== Software Development Specific Styles ========== */
/* Services Section - Software Development only */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 2.5rem;
    color: rgb(244, 143, 35);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.service-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Clients Section - Software Development only */
.clients-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-item i {
    font-size: 2.5rem;
    color: rgb(79, 79, 246);
    margin-bottom: 1rem;
}

.service-card,
.client-item {
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate-in,
.client-item.animate-in,
.benefit-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.service-card:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.service-card:nth-child(3).animate-in {
    transition-delay: 0.3s;
}

.service-card:nth-child(4).animate-in {
    transition-delay: 0.4s;
}

.service-card:nth-child(5).animate-in {
    transition-delay: 0.5s;
}

.service-card:nth-child(6).animate-in {
    transition-delay: 0.6s;
}

.service-card:nth-child(7).animate-in {
    transition-delay: 0.7s;
}

/* Why Choose Section - Software Development only */
.why-choose-section {
    padding: 4rem 0;
}

/* Benefit item from Software.css - Different structure than common .benefit-item */
.benefits-grid-software {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item-software {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.benefit-item-software:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

/* Highlights Section - Software Development only */
.highlights-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.highlights-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.highlight-item i {
    color: var(--secondary);
    margin-right: 1rem;
    font-size: 1.25rem;
}



/* Service Overview - Common for Digital Marketing, App Development, and Web Development */
.service-overview {
    padding: 4rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.overview-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.overview-card:nth-child(1).animated {
    transition-delay: 0.1s;
}

.overview-card:nth-child(2).animated {
    transition-delay: 0.2s;
}

.overview-card:nth-child(3).animated {
    transition-delay: 0.3s;
}

.overview-card:nth-child(4).animated {
    transition-delay: 0.4s;
}

.overview-card:nth-child(5).animated {
    transition-delay: 0.5s;
}

.overview-card:nth-child(6).animated {
    transition-delay: 0.6s;
}


/* What We Deliver - Common for Digital Marketing, App Development, and Web Development */
.what-we-deliver {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.deliver-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.deliver-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
}

.deliver-item i {
    color: var(--secondary);
    margin-right: 1rem;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Technologies - Common for Digital Marketing, App Development, and Web Development */
.technologies {
    padding: 4rem 0;
}

.technologies-section-label {
    margin-top: 40px;
}

.tech-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tech-tab {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--light-gray);
}

.tech-tab.active,
.tech-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tech-grid {
    display: flex;
    gap: 24px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.tech-grid>* {
    flex-shrink: 0;
}

.tech-grid {
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tech-item {
    min-width: 140px;
    text-align: center;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    animation-play-state: paused;
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* Process - Common for Digital Marketing, App Development, and Web Development */
.process {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.category-item {
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step,
.overview-card,
.benefit-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.animated,
.overview-card.animated,
.category-item.animated,
.benifit-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1).animated {
    transition-delay: 0.1s;
}

.process-step:nth-child(2).animated {
    transition-delay: 0.2s;
}

.process-step:nth-child(3).animated {
    transition-delay: 0.3s;
}

.process-step:nth-child(4).animated {
    transition-delay: 0.4s;
}

.process-step:nth-child(5).animated {
    transition-delay: 0.5s;
}

.category-item {
    transition-delay: calc(0.1s * var(--index));
}

/* Why Choose Us - Common for Digital Marketing, App Development, and Web Development */
.why-choose {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.benefit-item i {
    color: var(--secondary);
    margin-right: 1rem;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-item:nth-child(1).animated {
    transition-delay: 0.1s;
}

.benefit-item:nth-child(2).animated {
    transition-delay: 0.2s;
}

.benefit-item:nth-child(3).animated {
    transition-delay: 0.3s;
}

.benefit-item:nth-child(4).animated {
    transition-delay: 0.4s;
}

.benefit-item:nth-child(5).animated {
    transition-delay: 0.5s;
}

.benefit-item:nth-child(6).animated {
    transition-delay: 0.6s;
}

/* Pricing - Common for Digital Marketing, App Development, and Web Development */
.pricing {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border-top: 5px solid var(--secondary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--secondary);
    margin-right: 0.75rem;
}

.price {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-amount {
    color: var(--primary);
    font-size: 1.5rem;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 2rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

/* CTA Section - Common for all services */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("./images/connect\ with\ us.webp");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;


}


.cta-section h2:after {
    background: var(--secondary);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons.text-center {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}



.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


.cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}


.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    /* animation: movePattern 20s linear infinite; */
    opacity: 0.3;
}

.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}



.cta-section .cta-button {
    background: white;
    color: var(--primary);
    padding: 16px 35px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.cta-section .cta-button:hover {
    background: var(--primary);
    color: white;
}

@keyframes movePattern {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* Enhanced Services Section - Professional Design */
.services-nav-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-nav-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-nav-header h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-nav-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-nav-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}
/* 
.service-nav-tab {
    flex: 1;
    min-width: 170px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-nav-tab i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-nav-tab span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    transition: var(--transition);
}

.service-nav-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: var(--transition);
    z-index: 1;
}

.service-nav-tab.active {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.15);
    transform: translateY(-5px);
}

.service-nav-tab.active i,
.service-nav-tab.active span {
    color: var(--primary);
}

.service-nav-tab:hover:not(.active) {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */




.services-nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
    max-width: 100%;

    /* Optional: Improves the "feel" on mobile */
    -webkit-overflow-scrolling: touch;
}

.services-nav-tabs::-webkit-scrollbar {
    height: 6px;
}

.services-nav-tabs::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.services-nav-tabs::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
}

/* Individual Colorful Tabs */
.service-nav-tab {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 12px 20px;
    background: white;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}


/* Different colors for each tab */
.service-nav-tab[data-service="development"] {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-color: #38bdf8;
}

.service-nav-tab[data-service="digital-marketing"] {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-color: #f472b6;
}

.service-nav-tab[data-service="cloud"] {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #3b82f6;
}

.service-nav-tab[data-service="consulting"] {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #10b981;
}

.service-nav-tab[data-service="support"] {
    background: linear-gradient(135deg, #fef7cd, #fef3c7);
    border-color: #f59e0b;
}

/* Remove icons for minimal look */
.service-nav-tab i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Tab colors for icons */
.service-nav-tab[data-service="development"] i {
    color: #0284c7;
}

.service-nav-tab[data-service="digital-marketing"] i {
    color: #db2777;
}

.service-nav-tab[data-service="cloud"] i {
    color: #1d4ed8;
}

.service-nav-tab[data-service="consulting"] i {
    color: #059669;
}

.service-nav-tab[data-service="support"] i {
    color: #d97706;
}

/* Hover Effects */
.service-nav-tab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-nav-tab:hover i {
    transform: rotate(10deg) scale(1.1);
}

.service-nav-tab:hover span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.service-nav-tab.active {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border-width: 2px;
    position: relative;
    overflow: visible;
}

.service-nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Shine effect on hover */
.service-nav-tab::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.6s ease;
}

.service-nav-tab:hover::before {
    left: 100%;
}

.service-nav-tab.active i {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}


.service-nav-tab:hover:not(.active) {
    color: var(--primary);
}





/* Services Details Section */
.services-details-section {
    margin: 40px 0;
}

.service-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-category.active {
    display: block;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.category-header h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-header h2 i {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.subcategory-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.subcategory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.subcategory-card:hover::before {
    transform: scaleX(1);
}

.subcategory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.subcategory-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.subcategory-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.subcategory-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.subcategory-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.subcategory-card ul li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: var(--dark);
    line-height: 1.5;
}

.subcategory-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}


.tech-tag:hover {

    color: white;
}

.service-details-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    padding: 12px 24px 14px;
    margin: 20px auto 0;
    border-radius: var(--radius);
    background: rgba(16, 185, 129, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.service-details-link:hover {
    background: var(--primary);
    color: white;
    gap: 15px;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.service-details-link .link-text {
    font-size: 0.95rem;
}




/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.services-hero-section {
    padding: 40px 0 20px;
    background: linear-gradient(135deg, #2f4629 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.services-hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.services-hero-title .title-line {
    display: block;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: black ;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.services-hero-stats .stat-item {
    text-align: center;
}

.services-hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fef3c7;
}

.services-hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.title-line.highlight {
    color: #FFD700; /* Golden Yellow */
}

/* Services Navigation - COMPACT VERSION */
.services-nav-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    top: 70px;
    z-index: 10;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.services-nav-section.shrink {
    padding: 15px 0;
    top: 65px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.services-nav-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    top: 80px;
    z-index: 10;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.services-nav-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-nav-header {
    text-align: center;
    margin-bottom: 20px;
}

.services-nav-header h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--secondary), #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-nav-header p {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* Colorful tabs in a row */
.services-nav-tabs-inner{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
    max-width: 100%;

    /* Optional: Improves the "feel" on mobile */
    -webkit-overflow-scrolling: touch;
}

.services-nav-tabs-inner::-webkit-scrollbar {
    height: 6px;
}

.services-nav-tabs-inner::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.services-nav-tabs-inner::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
}

/* Individual Colorful Tabs */
.service-nav-tab-inner {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 12px 20px;
    background: white;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}


/* Different colors for each tab */
.service-nav-tab-inner[data-service="web-development"] {
    background: linear-gradient(135deg, #5f57f9, #6848f9);
    border-color: #3e3ebe;
}

.service-nav-tab-inner[data-service="digital-marketing"] {
    background: linear-gradient(135deg, #f41aff, #6c0f5b);
    border-color: #aa5bde;
}

.service-nav-tab-inner[data-service="cloud-solution"] {
    background: linear-gradient(135deg, #d33260, #ea2799);
    border-color: #ed58ed;
}

.service-nav-tab-inner[data-service="it-consulting"] {
    background: linear-gradient(135deg, #3ea093, #57dde2);
    border-color: #3ce3ab;
}

.service-nav-tab-inner[data-service="it-support"] {
    background: linear-gradient(135deg, #fef7cd, #fef3c7);
    border-color: #f59e0b;
}

.service-nav-tab-inner[data-service="app-development"] {
    background: linear-gradient(135deg, #d181ad, #5d2645);
    border-color: #e54598;
}

.service-nav-tab-inner[data-service="software-development"] {
    background: linear-gradient(135deg, #3b83e1, #7db4fb);
    border-color: #689beb;
}
.service-nav-tab-inner[data-service="ai-ml-solution"] {
    background: linear-gradient(135deg, #7d2b43, #fcdce3);
    border-color: #7c233e;
}

.service-nav-tab-inner[data-service="cyber-security"] {
    background: linear-gradient(135deg, #39ee6f, #5dfa94);
    border-color: #174a39;
}


.service-nav-tab-inner[data-service="ad-photography"] {
    background: linear-gradient(135deg, #b75e5e, #fb7373);
    border-color: #f50b0b;
}

/* Remove icons for minimal look */
.service-nav-tab-inner i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Tab colors for icons */
.service-nav-tab-inner[data-service="development"] i {
    color: #0284c7;
}

.service-nav-tab-inner[data-service="digital-marketing"] i {
    color: #db2777;
}

.service-nav-tab-inner[data-service="cloud"] i {
    color: #1d4ed8;
}

.service-nav-tab-inner[data-service="consulting"] i {
    color: #059669;
}

.service-nav-tab-inner[data-service="support"] i {
    color: #d97706;
}

/* Hover Effects */
.service-nav-tab-inner:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-nav-tab-inner:hover i {
    transform: rotate(10deg) scale(1.1);
}

.service-nav-tab-inner:hover span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.service-nav-tab-inner.active {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border-width: 2px;
    position: relative;
    overflow: visible;
}

.service-nav-tab-inner.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Shine effect on hover */
.service-nav-tab-inner::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.6s ease;
}

.service-nav-tab-inner:hover::before {
    left: 100%;
}

.service-nav-tab-inner.active i {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}


.service-nav-tab-inner:hover:not(.active) {
    color: var(--primary);
}


/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 35px 25px;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

/* Services CTA Section */
.services-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary), #1e293b);
    color: white;
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.services-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.services-cta-content .cta-buttons {
    justify-content: center;
}

.cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    transition: var(--transition);
    outline: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Footer Contact Info */
.contact-info {
    margin-top: 10px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info i {
    color: rgb(3, 160, 227);
    /* width: 20px; */
    /* flex-shrink: 0; */
    /* margin-top: 3px; */
    display: flex;
    align-items: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Fix for active nav links in header */
nav ul li a.active {
    /* color: var(--primary); */
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

/* Ensure service categories are properly scrolled to */
#development,
#digital-marketing,
#cloud,
#consulting,
#support {
    scroll-margin-top: 30px;
}

/* Smooth scroll offset for better UX */
html {
    scroll-padding-top: 100px;
}





/* [file name]: merged-style.css [file content append] */
/* ===== SOLUTIONS PAGE SPECIFIC STYLES ===== */

/* Solutions Content Section */
.solutions-content-section {
    padding: 60px 0;
    background: #f8fafc;
}

.solution-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.solution-category.active {
    display: block;
}

.solution-subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Industry-specific icon colors */
.service-nav-tab[data-solution="ecommerce"] i {
    color: #3b82f6;
}

.service-nav-tab[data-solution="healthcare"] i {
    color: #10b981;
}

.service-nav-tab[data-solution="education"] i {
    color: #f59e0b;
}

.service-nav-tab[data-solution="finance"] i {
    color: #8b5cf6;
}

.service-nav-tab[data-solution="marketing"] i {
    color: #64748b;
}

/* Active state colors */
.service-nav-tab.active[data-solution="ecommerce"] {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #3b82f6;
}

.service-nav-tab.active[data-solution="healthcare"] {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #10b981;
}

.service-nav-tab.active[data-solution="education"] {
    background: linear-gradient(135deg, #fefce8, #fef9c3);
    border-color: #f59e0b;
}

.service-nav-tab.active[data-solution="finance"] {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border-color: #8b5cf6;
}

.service-nav-tab.active[data-solution="marketing"] {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-color: #64748b;
}

/* digital marketing */

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: #6d28d9;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.8rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Solutions Section */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.solutions-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.solutions-filter .filter-btn {
    padding: 10px 20px;
    background-color: #f3f4f6;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.solutions-filter .filter-btn:hover {
    background-color: #e5e7eb;
}

.solutions-filter .filter-btn.active {
    background-color: #8b5cf6;
    color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.solution-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-header {
    padding: 25px 25px 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.solution-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.solution-card h3 {
    font-size: 1.4rem;
    color: #6d28d9;
}

.solution-body {
    padding: 0 25px 25px;
}

.solution-body p {
    color: #6b7280;
    margin-bottom: 20px;
}

.solution-features {
    margin-bottom: 20px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #4b5563;
}

.solution-features li i {
    color: #8b5cf6;
    font-size: 14px;
}

.solution-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.solution-tag {
    padding: 4px 12px;
    background-color: #f5f3ff;
    color: #8b5cf6;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #f5f3ff;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #6b7280;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.client-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-card i {
    font-size: 40px;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.client-card h3 {
    font-size: 1.3rem;
    color: #6d28d9;
    margin-bottom: 8px;
}

.client-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 40px;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: #6d28d9;
}

/* Platforms Section */
.platforms-section {
    padding: 80px 0;
    background-color: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.platform-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.platform-card i {
    font-size: 50px;
    margin-bottom: 15px;
}

.platform-card i.fa-google {
    color: #4285F4;
}

.platform-card i.fa-facebook {
    color: #1877F2;
}

.platform-card i.fa-linkedin {
    color: #0077B5;
}

.platform-card i.fa-youtube {
    color: #FF0000;
}

.platform-card i.fa-twitter {
    color: #1DA1F2;
}

.platform-card i.fa-pinterest {
    color: #E60023;
}

.platform-card h4 {
    font-size: 1.1rem;
    color: #6d28d9;
}




/* Hero Section */
/* .hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #fef3c7;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description strong {
    color: #fef3c7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
} */

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: #fef3c7;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tab Section */
.tab-section {
    padding: 80px 0;
    background: white;
}

.tabs-nav {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 40px;
}

.tabs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tab-btn {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.tab-btn span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.tab-btn.active {
    border-color: var(--primary);
    /* background: var(--primary-light); */
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tab-btn.active i {
    color: var(--primary);
    transform: scale(1.1);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 300px;
    height: 300px;
    /* background: linear-gradient(135deg, var(--primary-light), white); */
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}

.visual-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.8;
}

.visual-placeholder.marketplace i:nth-child(2) {
    color: var(--accent);
}

.visual-placeholder.inventory i:nth-child(2) {
    color: #3b82f6;
}

.visual-placeholder.payment i:nth-child(2) {
    color: #8b5cf6;
}

.tab-text h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.tab-description {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 30px;
}

.features-list .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--dark);
}

.features-list .feature i {
    color: var(--primary);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: #03a0e3;
    padding: 4px 15px;
    border-radius: 0 0 12px;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    border-color: #03a0e3;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: var(--light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.client-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.client-icon {
    width: 70px;
    height: 70px;
    /* background: var(--primary-light); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.client-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.client-card h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.client-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Section */
/* .cta-section {
    padding: 80px 0;
    background: var(--light);
} */

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.cta-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cta-icon {
    width: 70px;
    height: 70px;
    /* background: var(--primary-light); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.cta-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cta-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: rgba(22, 228, 132, 0.123);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    max-width: 570px;
    margin: 0 auto;
    height: 430px;
}

.contact-form h3 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

#contactForm button {
    padding: 11px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background-color: darkblue;
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 177, 120, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* Additional Blog-specific Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 80px 0;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: var(--primary);
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.post-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius) 0 0 var(--radius);
    outline: none;
    transition: var(--transition);
}

.search-form input:focus {
    border-color: var(--primary);
}

.search-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.categories-list a:hover {
    color: var(--primary);
}

.categories-list span {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
}

.recent-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
}

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.recent-post-content span {
    font-size: 0.8rem;
    color: var(--gray);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud {
    background: #f8fafc;
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.tag-cloud:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    gap: 10px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: var(--radius);
    background: white;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--secondary), #1e293b);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget p {
    margin-bottom: 20px;
    opacity: 0.9;
}



/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, rgb(14, 30, 14) 100%);
    color: white;
    padding: 80px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-story {
    padding: 40px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.story-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.story-visual:hover img {
    transform: scale(1.05);
}



.mission-vision {
    padding: 40px 0;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.mv-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mv-card p {
    color: var(--gray);
    line-height: 1.7;
    text-align: justify;
}


/* ===== Mission & Vision - Colorful Upgrade ===== */

.mission-vision {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 40%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.mission-vision::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(30,177,120,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.mission-vision::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(48,222,208,0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* ── Card base ── */
.mv-card {
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    border-top: none;
}

/* Shimmer sweep on hover */
.mv-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}
.mv-card:hover::after { left: 150%; }

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 40px rgba(0,0,0,0.15);
}

/* ── Card 1: Mission — Deep green gradient ── */
.mv-card:nth-child(1) {
    background: linear-gradient(145deg, #1eb178 0%, #0d9488 100%);
    box-shadow: 0 10px 30px rgba(30,177,120,0.35);
}
.mv-card:nth-child(1) .mv-icon {
    background: rgba(255,255,255,0.2);
}
.mv-card:nth-child(1) .mv-icon i { color: #ffffff; }
.mv-card:nth-child(1) h3 { color: #b40a0a; }
.mv-card:nth-child(1) p  { color: rgba(255,255,255,0.88); }

/* ── Card 2: Vision — Dark navy with teal accent ── */
.mv-card:nth-child(2) {
    background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 100%);
    box-shadow: 0 10px 30px rgba(15,23,42,0.4);
}
.mv-card:nth-child(2) .mv-icon {
    background: rgba(48,222,208,0.15);
}
.mv-card:nth-child(2) .mv-icon i { color: #30ded0; }
.mv-card:nth-child(2) h3 { color: #6f7c05; }
.mv-card:nth-child(2) p  { color: rgba(255,255,255,0.78); }

/* ── Card 3: Promise — Warm teal-to-green ── */
.mv-card:nth-child(3) {
    background: linear-gradient(145deg, #059669 0%, #1eb178 60%, #30ded0 100%);
    box-shadow: 0 10px 30px rgba(5,150,105,0.35);
}
.mv-card:nth-child(3) .mv-icon {
    background: rgba(255,255,255,0.2);
}
.mv-card:nth-child(3) .mv-icon i { color: #ffffff; }
.mv-card:nth-child(3) h3 { color: #2821b9; }
.mv-card:nth-child(3) p  { color: rgba(255,255,255,0.88); }

/* ── Icon circle shared styles ── */
.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}
.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(6deg);
}
.mv-icon i {
    font-size: 2.5rem;
}

.mv-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.mv-card p {
    line-height: 1.75;
}

/* ── Section label dot ── */
/* .mission-vision .section-label {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
} */



.our-values {
    padding: 40px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.value-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.value-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
    text-align: justify; */
}




/* ===== Our Values Section — Colorful + Animated ===== */

.our-values {
    padding: 70px 0;
    background: linear-gradient(160deg, #c7ccd8 0%, #c1cad8 60%, #99dbc6 100%);
    position: relative;
    overflow: hidden;
}

/* Floating glow orbs in background */
.our-values::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(30,177,120,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: valueOrb1 8s ease-in-out infinite alternate;
    pointer-events: none;
}
.our-values::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -100px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(48,222,208,0.14) 0%, transparent 70%);
    border-radius: 50%;
    animation: valueOrb2 10s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes valueOrb1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(60px, 40px) scale(1.2); }
}
@keyframes valueOrb2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-50px, -60px) scale(1.15); }
}

/* Section header text on dark bg */
.our-values .section-header h2 { color: #040404; }
.our-values .section-header p  { color: rgba(33, 31, 31, 0.65); }
/* .our-values .section-label {
    color: #74f199;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem;
} */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* ── Card base ── */
.value-card {
    text-align: center;
    padding: 36px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;

    /* Start hidden for scroll reveal */
    opacity: 1;
    transform: translateY(50px);
}
.value-card.vc-animate {
    opacity: 1;
    transform: translateY(0);
}
.value-card:nth-child(1) { transition-delay: 0.05s; }
.value-card:nth-child(2) { transition-delay: 0.15s; }
.value-card:nth-child(3) { transition-delay: 0.25s; }
.value-card:nth-child(4) { transition-delay: 0.35s; }
.value-card:nth-child(5) { transition-delay: 0.45s; }
.value-card:nth-child(6) { transition-delay: 0.55s; }

/* Hover lift */
.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 50px rgba(0,0,0,0.4);
}

/* Shimmer sweep on hover */
.value-card::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}
.value-card:hover::after { left: 160%; }

/* ── Per-card color themes ── */

/* 1 — Innovation: amber/orange */
.value-card:nth-child(1) {
    background: linear-gradient(145deg, #1c1408 0%, #2d1f00 100%);
    border-color: rgba(251,146,60,0.25);
}
.value-card:nth-child(1):hover { border-color: rgba(251,146,60,0.6); box-shadow: 0 28px 50px rgba(251,146,60,0.2); }
.value-card:nth-child(1) .value-icon { background: rgba(251,146,60,0.15); }
.value-card:nth-child(1) .value-icon i { color: #fb923c; }
.value-card:nth-child(1) h3 { color: #fed7aa; }
.value-card:nth-child(1) p  { color: rgba(254,215,170,0.72); }

/* 2 — Collaboration: sky blue */
.value-card:nth-child(2) {
    background: linear-gradient(145deg, #071826 0%, #0c2a3d 100%);
    border-color: rgba(56,189,248,0.25);
}
.value-card:nth-child(2):hover { border-color: rgba(56,189,248,0.6); box-shadow: 0 28px 50px rgba(56,189,248,0.18); }
.value-card:nth-child(2) .value-icon { background: rgba(56,189,248,0.12); }
.value-card:nth-child(2) .value-icon i { color: #38bdf8; }
.value-card:nth-child(2) h3 { color: #bae6fd; }
.value-card:nth-child(2) p  { color: rgba(186,230,253,0.72); }

/* 3 — Excellence: purple/violet */
.value-card:nth-child(3) {
    background: linear-gradient(145deg, #150e26 0%, #1f1040 100%);
    border-color: rgba(167,139,250,0.25);
}
.value-card:nth-child(3):hover { border-color: rgba(167,139,250,0.6); box-shadow: 0 28px 50px rgba(167,139,250,0.2); }
.value-card:nth-child(3) .value-icon { background: rgba(167,139,250,0.12); }
.value-card:nth-child(3) .value-icon i { color: #a78bfa; }
.value-card:nth-child(3) h3 { color: #ddd6fe; }
.value-card:nth-child(3) p  { color: rgba(221,214,254,0.72); }

/* 4 — Integrity: emerald green */
.value-card:nth-child(4) {
    background: linear-gradient(145deg, #051a10 0%, #0a2e1c 100%);
    border-color: rgba(52,211,153,0.25);
}
.value-card:nth-child(4):hover { border-color: rgba(52,211,153,0.6); box-shadow: 0 28px 50px rgba(52,211,153,0.18); }
.value-card:nth-child(4) .value-icon { background: rgba(52,211,153,0.12); }
.value-card:nth-child(4) .value-icon i { color: #34d399; }
.value-card:nth-child(4) h3 { color: #a7f3d0; }
.value-card:nth-child(4) p  { color: rgba(167,243,208,0.72); }

/* 5 — Passion: rose/pink */
.value-card:nth-child(5) {
    background: linear-gradient(145deg, #200a12 0%, #340f1c 100%);
    border-color: rgba(251,113,133,0.25);
}
.value-card:nth-child(5):hover { border-color: rgba(251,113,133,0.6); box-shadow: 0 28px 50px rgba(251,113,133,0.2); }
.value-card:nth-child(5) .value-icon { background: rgba(251,113,133,0.12); }
.value-card:nth-child(5) .value-icon i { color: #fb7185; }
.value-card:nth-child(5) h3 { color: #fecdd3; }
.value-card:nth-child(5) p  { color: rgba(254,205,211,0.72); }

/* 6 — Continuous Learning: cyan/teal */
.value-card:nth-child(6) {
    background: linear-gradient(145deg, #041a1e 0%, #082d33 100%);
    border-color: rgba(34,211,238,0.25);
}
.value-card:nth-child(6):hover { border-color: rgba(34,211,238,0.6); box-shadow: 0 28px 50px rgba(34,211,238,0.18); }
.value-card:nth-child(6) .value-icon { background: rgba(34,211,238,0.12); }
.value-card:nth-child(6) .value-icon i { color: #22d3ee; }
.value-card:nth-child(6) h3 { color: #a5f3fc; }
.value-card:nth-child(6) p  { color: rgba(165,243,252,0.72); }

/* ── Icon shared ── */
.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.value-card:hover .value-icon { transform: scale(1.18) rotate(8deg); }
.value-icon i { font-size: 2rem; transition: transform 0.3s ease; }

/* Icon bounce pop on scroll-reveal */
@keyframes vcIconPop {
    0%   { transform: scale(0.3) rotate(-20deg); opacity: 0; }
    70%  { transform: scale(1.2) rotate(6deg);  opacity: 1; }
    100% { transform: scale(1)   rotate(0deg);  opacity: 1; }
}
.value-card.vc-animate .value-icon {
    animation: vcIconPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
.value-card:nth-child(1).vc-animate .value-icon { animation-delay: 0.15s; }
.value-card:nth-child(2).vc-animate .value-icon { animation-delay: 0.25s; }
.value-card:nth-child(3).vc-animate .value-icon { animation-delay: 0.35s; }
.value-card:nth-child(4).vc-animate .value-icon { animation-delay: 0.45s; }
.value-card:nth-child(5).vc-animate .value-icon { animation-delay: 0.55s; }
.value-card:nth-child(6).vc-animate .value-icon { animation-delay: 0.65s; }

.value-card h3 { margin-bottom: 14px; font-size: 1.25rem; }
.value-card p  { line-height: 1.75; font-size: 0.95rem; }





.team-section {
    padding: 40px 0;
    background: #f8fafc;
}

.team-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.team-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: team-scroll 25s linear infinite;
}

.team-member {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    flex-shrink: 0;
    width: 280px;
}

@keyframes team-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px 20px;
}

.member-info h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.member-bio {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}





/* ===== Team Section — Colorful + Animated ===== */

.team-section {
    padding: 70px 0;
    background: linear-gradient(170deg, #4f5875 0%, #d2f1e7 50%, #2e343c 100%);
    position: relative;
    overflow: hidden;
}

/* Animated mesh background blobs */
.team-section::before {
    content: '';
    position: absolute;
    top: -150px; left: 10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(30,177,120,0.12) 0%, transparent 65%);
    border-radius: 50%;
    animation: teamBlob1 12s ease-in-out infinite alternate;
    pointer-events: none;
}
.team-section::after {
    content: '';
    position: absolute;
    bottom: -150px; right: 5%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(48,222,208,0.10) 0%, transparent 65%);
    border-radius: 50%;
    animation: teamBlob2 9s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes teamBlob1 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(80px, 60px) scale(1.3); }
}
@keyframes teamBlob2 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(-60px,-80px) scale(1.2); }
}

/* Header text on dark bg */
.team-section .section-header h2 { color: #ffffff; }
.team-section .section-header p  { color: rgba(255,255,255,0.6); }
.team-section .section-label {
    /* color: #74f199;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem; */
}

/* Slider fade edges */
.team-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.team-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: team-scroll 28s linear infinite;
}
.team-track:hover { animation-play-state: paused; }

@keyframes team-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Card base ── */
.team-member {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.34,1.4,0.64,1),
                box-shadow 0.45s ease;
    text-align: center;
    flex-shrink: 0;
    width: 280px;
    border: 1px solid rgba(255,255,255,0.07);
    position: relative;
}
.team-member:hover {
    transform: translateY(-14px) scale(1.02);
}

/* ── Per-card color themes ── */

/* Card 1 — Teal/Green */
.team-member:nth-child(1),
.team-member:nth-child(5) {
    background: linear-gradient(170deg, #071f18 0%, #0d2e22 100%);
    box-shadow: 0 8px 30px rgba(30,177,120,0.2);
}
.team-member:nth-child(1):hover,
.team-member:nth-child(5):hover {
    box-shadow: 0 24px 50px rgba(30,177,120,0.35);
    border-color: rgba(30,177,120,0.4);
}
.team-member:nth-child(1) .member-role,
.team-member:nth-child(5) .member-role { color: #34d399; }
.team-member:nth-child(1) .member-social a,
.team-member:nth-child(5) .member-social a { background: rgba(52,211,153,0.12); color: #34d399; }
.team-member:nth-child(1) .member-social a:hover,
.team-member:nth-child(5) .member-social a:hover { background: #34d399; color: #071f18; }

/* Card 2 — Sky blue */
.team-member:nth-child(2),
.team-member:nth-child(6) {
    background: linear-gradient(170deg, #060f1f 0%, #0b1f38 100%);
    box-shadow: 0 8px 30px rgba(56,189,248,0.18);
}
.team-member:nth-child(2):hover,
.team-member:nth-child(6):hover {
    box-shadow: 0 24px 50px rgba(56,189,248,0.3);
    border-color: rgba(56,189,248,0.4);
}
.team-member:nth-child(2) .member-role,
.team-member:nth-child(6) .member-role { color: #38bdf8; }
.team-member:nth-child(2) .member-social a,
.team-member:nth-child(6) .member-social a { background: rgba(56,189,248,0.1); color: #38bdf8; }
.team-member:nth-child(2) .member-social a:hover,
.team-member:nth-child(6) .member-social a:hover { background: #38bdf8; color: #060f1f; }

/* Card 3 — Purple/Violet */
.team-member:nth-child(3),
.team-member:nth-child(7) {
    background: linear-gradient(170deg, #100a20 0%, #1a0f35 100%);
    box-shadow: 0 8px 30px rgba(167,139,250,0.18);
}
.team-member:nth-child(3):hover,
.team-member:nth-child(7):hover {
    box-shadow: 0 24px 50px rgba(167,139,250,0.3);
    border-color: rgba(167,139,250,0.4);
}
.team-member:nth-child(3) .member-role,
.team-member:nth-child(7) .member-role { color: #a78bfa; }
.team-member:nth-child(3) .member-social a,
.team-member:nth-child(7) .member-social a { background: rgba(167,139,250,0.1); color: #a78bfa; }
.team-member:nth-child(3) .member-social a:hover,
.team-member:nth-child(7) .member-social a:hover { background: #a78bfa; color: #100a20; }

/* Card 4 — Rose/Pink */
.team-member:nth-child(4),
.team-member:nth-child(8) {
    background: linear-gradient(170deg, #1a080e 0%, #2d0f1a 100%);
    box-shadow: 0 8px 30px rgba(251,113,133,0.18);
}
.team-member:nth-child(4):hover,
.team-member:nth-child(8):hover {
    box-shadow: 0 24px 50px rgba(251,113,133,0.3);
    border-color: rgba(251,113,133,0.4);
}
.team-member:nth-child(4) .member-role,
.team-member:nth-child(8) .member-role { color: #fb7185; }
.team-member:nth-child(4) .member-social a,
.team-member:nth-child(8) .member-social a { background: rgba(251,113,133,0.1); color: #fb7185; }
.team-member:nth-child(4) .member-social a:hover,
.team-member:nth-child(8) .member-social a:hover { background: #fb7185; color: #1a080e; }

/* ── Image block with color overlay on hover ── */
.member-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.member-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
    transition: opacity 0.4s ease;
    opacity: 0.6;
}
.team-member:hover .member-image::after { opacity: 0.3; }

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: brightness(0.9);
}
.team-member:hover .member-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* ── Info block ── */
.member-info {
    padding: 22px 20px 26px;
}
.member-info h3 {
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 1.15rem;
}
.member-role {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.member-bio {
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
    line-height: 1.65;
    font-size: 0.9rem;
}

/* ── Social icons ── */
.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.member-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                background 0.3s ease,
                color 0.3s ease;
}
.member-social a:hover { transform: translateY(-4px) scale(1.15); }





.achievements {
    padding: 40px 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: #f8fafc;
    transition: var(--transition);
}

.achievement-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.clients-section {
    padding: 40px 0;
    background: #f8fafc;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.client-logo {
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-logo img {
    height: 60px;
    width: auto;
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Timeline for Company History */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}




.services-nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

/* Hide scrollbar completely */
.services-nav-tabs {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.services-nav-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Arrow buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-btn i {
    font-size: 16px;
    color: var(--secondary);
}

.scroll-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Left & Right positioning */
.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}






/* Responsive Design */
@media (max-width: 1200px) {
    .services-hero-title {
        font-size: 3rem;
    }

    .services-hero-stats {
        gap: 40px;
    }

    .services-nav-tabs {
        gap: 12px;
    }

    .service-nav-tab {
        min-width: 140px;
        padding: 18px 12px;
    }
}

@media (max-width: 992px) {
    .services-hero-title {
        font-size: 2.5rem;
    }

    .service-subcategories {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Make services nav scrollable horizontally on mobile */
    .services-nav-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .service-nav-tab {
        flex-shrink: 0;
        padding: 8px 16px;
    }

    .services-nav-section {
        top: 70px;
    }

    .services-nav-tabs {
        justify-content: flex-start;
        padding: 15px 10px;
    }

    .service-nav-tab {
        min-width: 130px;
        padding: 16px 10px;
        font-size: 0.95rem;
    }

    .service-nav-tab i {
        font-size: 1.6rem;
    }

    .services-nav-tabs {
        max-width: 100%;
    }

    .service-nav-tab {
        min-width: 150px;
    }

    .service-subcategories {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 999;
        box-shadow: var(--shadow);
    }

    .main-nav.show {
        display: block;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .tab-content-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .visual-placeholder {
        width: 250px;
        height: 250px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .clients-grid,
    .platforms-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .blog-content {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: -1;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 30px;
    }

    .container {
        max-width: 1140px;
    }

    footer .container {
        max-width: 1140px;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-methods {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column p {
        font-size: 14px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .main-nav.show {
        display: block !important;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        padding: 20px;
        margin: 0;
    }

    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        padding: 10px 0;
    }

    /* Dropdown fixes for mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

}


@media (max-width: 768px) {
    header {
        position: sticky;
        top: 0;
        z-index: 2000;
        background: rgba(255, 255, 255, 0.95);
        transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    header.shrink {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    header.shrink .header-container {
        animation: floatNav 3s ease-in-out infinite;
    }

    .mobile-menu {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 2000;
        padding: 10px;
        cursor: pointer;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        flex-direction: column;
        z-index: 2000;
    }

    .main-nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 20px;
    }

    /* THIS IS THE IMPORTANT PART */
    .main-nav ul.show {
        display: flex;

    }

    nav ul.show {
        display: flex;
        pointer-events: auto;
    }

    .main-nav ul li {
        margin: 12px 0;
    }

    .services-hero-section {
        padding: 120px 0 60px;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .category-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .services-nav-section {
        padding: 30px 0;
        top: 60px;
    }

    .services-nav-header h2 {
        font-size: 1.6rem;
    }

    .services-nav-header p {
        font-size: 1rem;
    }

    .service-nav-tab i {
        font-size: 1.4rem;
    }

    .services-nav-section {
        padding: 30px 20px;
    }


    .category-header {
        padding: 20px;
    }

    .category-header h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }

    .services-cta {
        padding: 40px 20px;
    }

    .services-cta h3 {
        font-size: 1.8rem;
    }

    .services-cta p {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .testimonial-nav {
        position: static;
        transform: none;
        margin-top: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .service-header .container {
        flex-direction: column;
    }

    .header-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .process-step {
        min-width: 100%;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .popular-badge {
        right: -20px;
        width: 100px;
        font-size: 0.9rem;
    }

    /* Software Development specific responsive */
    .services-grid,
    .clients-grid,
    .benefits-grid-software {
        grid-template-columns: 1fr;
    }

    .cta-buttons.text-center {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }

    .solution-subcategories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solutions-content-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .tabs-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .solutions-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid,
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .cta-about h2 {
        font-size: 2rem;
    }

    .clients-logos {
        gap: 30px;
    }

    .client-logo img {
        height: 40px;
    }

    .scroll-btn {
        display: none;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .tech-item {
        padding: 20px 10px;
    }

    .tech-icon {
        font-size: 2.5rem;
        height: 50px;
    }

    .tech-name {
        font-size: 0.9rem;
    }

    .tech-category-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .category-header h3 {
        font-size: 1.5rem;
    }

    .testimonial-track {
        justify-content: center;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        transform: none;
        filter: none;
        opacity: 1;
    }

    .testimonial-slide.left,
    .testimonial-slide.right {
        display: none;
        /* hide side slides on mobile */
    }

    .contact-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 28px;
        text-align: center;
    }

    .section-header p {
        text-align: center;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-group {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    footer {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form .input-group {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .services-nav-tabs {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        padding-bottom: 10px;

        /* Touch scrolling */
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .service-nav-tab {
        flex: 0 0 auto;
        min-width: 160px;
    }

    /* Hide scrollbar – Chrome, Safari */
    .services-nav-tabs::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar – Firefox */
    .services-nav-tabs {
        scrollbar-width: none;
    }
}

@media (max-width: 576px) {
    .services-hero-title {
        font-size: 1.8rem;
    }

    .services-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .services-hero-badge {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .services-hero-stats .stat-number {
        font-size: 2rem;
    }

    .services-nav-header h2 {
        font-size: 1.4rem;
    }

    .services-nav-header p {
        font-size: 0.9rem;
    }

    .service-subcategories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .subcategory-card,
    .process-step {
        padding: 25px 20px;
    }

    .category-header h2 {
        font-size: 1.6rem;
    }

    .category-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .services-cta-content h2 {
        font-size: 1.8rem;
    }

    .services-cta-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }

    .services-nav-section {
        padding: 25px 0;
        top: 60px;
    }

    .services-nav-header {
        margin-bottom: 20px;
    }

    .services-nav-header h2 {
        font-size: 1.4rem;
    }

    .services-nav-header p {
        font-size: 0.9rem;
    }

    .services-nav-tabs {
        gap: 8px;
        padding: 10px 5px;
    }

    .service-nav-tab {
        min-width: 110px;
        padding: 12px 6px;
        font-size: 0.85rem;
        border-radius: 10px;
        gap: 8px;
    }

    .service-nav-tab i {
        font-size: 1.2rem;
    }

    /* .service-nav-tab.active::before {
        width: 20px;
        height: 20px;
        top: -8px;
        right: -8px;
        font-size: 0.7rem;
    } */

    .service-subcategories {
        grid-template-columns: 1fr;
    }

    .subcategory-card {
        padding: 25px;
    }

    .services-nav-header h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .floating-card {
        width: 120px;
        padding: 15px;
    }

    .services-cta {
        padding: 30px 20px;
    }



    .testimonial-content {
        padding: 30px 20px;
    }

    .solution-subcategories {
        gap: 15px;
    }

    .services-nav-tabs {
        gap: 8px;
    }

    .service-nav-tab {
        min-width: 120px;
        padding: 10px 5px;
        font-size: 0.85rem;
    }

    .tabs-container {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .visual-placeholder {
        width: 200px;
        height: 200px;
    }

    .visual-placeholder i {
        font-size: 3rem;
    }

    .blog-hero {
        padding: 100px 0 60px;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 8px;
    }

    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .mv-grid,
    .values-grid,
    .team-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .clients-logos {
        gap: 20px;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .tech-item {
        padding: 15px 8px;
    }

    .tech-icon {
        font-size: 2rem;
        height: 40px;
    }

    .tech-name {
        font-size: 0.8rem;
    }

    .tech-category-tabs {
        gap: 8px;
    }

    .tech-category-tab {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .section-label {
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .method-icon {
        margin-bottom: 10px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column p {
        font-size: 14px;
        line-height: 1.6;
    }

    .newsletter-form input {
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 10px 14px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    /* Software Development specific responsive */
    .service-card,
    .client-item,
    .benefit-item-software {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .solutions-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 250px;
    }

    .clients-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .services-nav-tabs {
        gap: 5px 10px;
    }

    .service-nav-tab {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .subcategory-card h3 {
        font-size: 1.3rem;
    }

    .tech-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .service-nav-tab {
        min-width: 100px;
        padding: 10px 4px;
        font-size: 0.8rem;
    }

    .service-nav-tab i {
        font-size: 1.1rem;
    }
}

/* Print styles */
@media print {

    .services-nav-section,
    .services-hero-stats,
    .cta-buttons,
    .faq-question i {
        display: none;
    }

    .service-category {
        display: block !important;
        margin-bottom: 40px;
        page-break-inside: avoid;
    }

    .services-hero-section {
        background: white !important;
        color: black;
        padding: 60px 0 30px;
    }

    .services-hero-title {
        color: black;
        font-size: 2rem;
    }

    .services-hero-subtitle {
        color: #666;
    }
}


/* Animation for service tabs */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}