/* ===================================
   Global Theme & Variables
=================================== */
:root {
    --primary-color: #1e2a38;
    --secondary-color: #3498db;
    --accent-color: #00d2d3;
    --light-color: #f5f7fa;
    --dark-color: #121212;
    --text-color: #2f3640;
    --text-light: #7f8c8d;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
    --radius-lg: 15px;
    --transition: all 0.3s ease;
}

/* ===================================
   Base Styles
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, var(--light-color) 0%, #eef1f4 100%);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
    position: relative;
}

.dashboard-section {
    padding: 86px 0 0 !important;
}
.first-title {
    margin-top: 50px;
}

/* ===================================
   Section Titles
=================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 20px auto 0;
    border-radius: 2px;
    animation: slide-in 1.2s ease forwards;
}

@keyframes slide-in {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ===================================
   Navbar
=================================== */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

#logo-icon {
    width: 16px;
    height: 30px;
    transition: transform 0.3s ease;
}

.logo:hover #logo-icon {
    transform: rotate(15deg);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
=================================== */
.hero {
    padding-top: 120px;
    background: radial-gradient(circle at top left, #eef3f7, #d9e4ec);
}

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

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.btn {
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

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

.hero-visualization {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#hero-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#hero_image {
    width: 130%;
    height: auto;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--accent-color);
}

/* ===================================
   Industries Section
=================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.industry-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    margin: 0;
    text-align: center;
}

/* ===================================
   Case insights Section
=================================== */
.case-insight-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.case-insight {
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
    transition: var(--transition);
}

.case-insight:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.case-insight h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.case-insight p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* ===================================
   About Section
=================================== */
.about-content {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
}

/* ===================================
   Contact Section
=================================== */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    justify-content: center;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
}

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

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.contact-form {
    display: grid;
    gap: 20px;
    width:95%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===================================
   Footer
=================================== */
footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo a {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-newsletter button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-newsletter button:hover {
    background: #2980b9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* ===================================
   Animations & Effects
=================================== */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    animation: fade-up 0.8s ease forwards;
}

/* ===================================
   Responsive Styles
=================================== */

.more_btn{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}



/* Service Detail Page */
/* Service Detail Page */
.service-detail {
    padding: 60px 0;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.service-icon i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    background: rgba(52, 152, 219, 0.1);
    padding: 30px;
    border-radius: 50%;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 10px;
}

.service-section {
    margin-bottom: 60px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.tech-item img {
    height: 30px;
    width: auto;
}

.case-insights {
    gap: 30px;
}

.case-insight {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.case-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
}



.service_container{
    margin-top: 80px;
}

#service_contact{
    margin-bottom: 40px;
}

.extra_btn{
    max-width: 75%;
}


/* Featured Tool Card */
.featured-dashboard-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.featured-dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.featured-dashboard-content {
    display: flex;
    align-items: center;
    padding: 30px;
}

.featured-dashboard-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-dashboard-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.featured-dashboard-card:hover .featured-dashboard-image img {
    transform: scale(1.03);
}

.featured-dashboard-info {
    flex: 1;
    padding: 0 30px;
}

.featured-dashboard-info h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.dashboard-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.dashboard-features span {
    background: rgba(52, 152, 219, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #3498db;
}

.cta-button {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}


@media (max-width: 768px) {
    .featured-dashboard-content {
        flex-direction: column;
    }
    
    .featured-dashboard-image {
        margin-bottom: 20px;
        width: 100%;
    }
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
    }

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

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

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

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

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

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

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-visualization {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }
    .hero-visualization{
        display: block;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-visualization{
        display: none;
    }

    .contact-info{
        justify-content: center;
    }
}

.learn_button{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}







/* Services Section Styles */
.services {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.services-hero {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.services-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
}

.services-subtitle {
    font-size: 1.4rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.scrolling-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scrolling-indicator span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.arrow {
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Service Block Styles */
.service-block {
    display: flex;
    margin: 6rem 0;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    justify-content: left;
}

.service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.service-icon-main {
    font-size: 8rem;
    color: #3498db;
    position: relative;
    z-index: 3;
    transition: all 0.5s ease;
}

.service-icon-main:hover {
    transform: scale(1.1);
    color: #2c3e50;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Replace the existing .shape styles with these: */

.shape {
    position: absolute;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.shape img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: grayscale(30%) brightness(1.1);
    transition: all 0.5s ease;
}

.shape:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
    z-index: 10;
}

.shape:hover img {
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.8 !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.shape-2 {
    width: 90px;
    height: 90px;
    top: 60%;
    left: 70%;
    animation: float 10s ease-in-out infinite 1s;
    opacity: 0.8 !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 60%;
    animation: float 12s ease-in-out infinite 2s;
    opacity: 0.8 !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

/* Add these new animations */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.shape:nth-child(1) img {
    animation: rotate 20s linear infinite;
}

.shape:nth-child(2) img {
    animation: pulse 4s ease-in-out infinite;
}

.shape:nth-child(3) img {
    animation: rotate 15s linear infinite reverse;
}

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

.service-content {
    flex: 2;
    padding: 0 2rem;
    width: 80%;
}

.service-header {
    margin-bottom: 2rem;
    position: relative;
}

.service-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-header .service-subtitle {
    font-size: 1.2rem;
    color: #3498db;
    font-style: italic;
    margin-bottom: 1rem;
}

.service-decoration {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    border-radius: 2px;
}

.service-overview {
    margin-bottom: 2.5rem;
}

.service-overview p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

/* Process Flow Styles */
.process-flow {
    margin-bottom: 2.5rem;
}

.process-flow h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.process-flow h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    padding: 1.2rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.process-step:hover {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    transform: translateX(5px);
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.3rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Tech Showcase Styles */
.tech-showcase {
    margin-bottom: 2.5rem;
}

.tech-showcase h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.tech-showcase h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tag {
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Projects Showcase Styles */
.projects-showcase h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.projects-showcase h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.project-scroller {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #3498db #f1f1f1;
}

.project-scroller::-webkit-scrollbar {
    height: 8px;
}

.project-scroller::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.project-scroller::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}

.project-item {
    flex: 0 0 auto;
    width: 250px;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-item h4 {
    margin: 0 0 0.8rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.project-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section Styles */
.cta-section {
    text-align: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    background:linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 40px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: i;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;

}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #fbfdff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-block {
        flex-direction: column !important;
        margin: 4rem 0;
    }
    
    .service-visual {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .service-content {
        padding: 0;
    }
    
    .services-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .services-main-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-icon-main {
        font-size: 6rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .service-block {
        padding: 1.5rem;
    }
    
    .services-main-title {
        font-size: 1.8rem;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .tech-tags {
        justify-content: center;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 0.8rem;
    }
}