/* WorksDelight Services Page Styles */

/* CSS Variables for Branding Consistency */
:root {

    --primary: #258412;
    --secondary: #1C2A3E;
    --white: #FFFFFF;
    --wd-primary-color: #258412;
    --wd-secondary-color: #4ecdc4;
    --wd-accent-color: #4ECDC4;
    --wd-text-color: #4A5568;
    --wd-heading-color: #2C3E50;
    --wd-background-light: #F8F9FA;
    --wd-background-dark: #1C2A3E;
    --wd-border-radius: 4px;
    --wd-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--wd-text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--wd-heading-color);
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}


img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--wd-border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #219652;
    /* Darker green */
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--wd-primary-color);
    border: 2px solid var(--wd-primary-color);
}

.btn-secondary:hover {
    background-color: rgba(40, 180, 99, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 180, 99, 0.1);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--wd-box-shadow);
    padding: 1rem 0;
}
section.geo-section .section-title {
    margin-bottom: 40px;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    margin-right: 2rem;
}

.nav-links li {
    margin: 0rem;
}

.nav-links a {
    color: var(--wd-heading-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--wd-primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--wd-primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile toggle button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--wd-primary-color);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--wd-primary-color);
}

/* Hero Section */
.services-hero {
    position: relative;
    padding: 90px 0 120px; 
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.12) 0%, rgba(37, 132, 18, 0.05) 100%);
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 132, 18, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: float 15s infinite alternate ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    opacity: 0.5;
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 15%;
    opacity: 0.7;
    animation: float 18s infinite alternate ease-in-out;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 30%;
    opacity: 0.2;
    animation: float 20s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(30px) scale(1.05);
    }
}

.services-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #258412;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.15) 0%, rgba(37, 132, 18, 0.25) 100%);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-badge i {
    margin-right: 8px;
    font-size: 12px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 1.2s ease;
    color: #1c2a3e;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    position: relative;
    /* overflow: hidden; */
    transition: all 0.4s ease;
}

.btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #258412;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #4A5568;
}

.hero-image {
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.hero-image:hover img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #258412 0%, #4ECDC4 100%);
    border-radius: 9999px;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.15;
    animation: pulse 3s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.floating-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: float 6s infinite alternate ease-in-out;
}

.tech-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.tech-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.tech-icon:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.tech-icon:nth-child(4) {
    bottom: 25%;
    right: 15%;
    animation-delay: 3s;
}

.tech-icon i {
    font-size: 24px;
    color: #258412;
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Approach Section */
#our-approach {
    background-color: #FFFFFF;
    padding: 50px 0;
}

.approach-header,
.services-header,
.process-header,
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #258412;
    margin-bottom: 12px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #6C757D;
    font-size: 18px;
    line-height: 1.6;
}

.approach-header h2,
.services-header h2,
.process-header h2,
.testimonials-header h2 {
    font-size: 41.6px;
    margin-bottom: 16px;
    color: #1c2a3e;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.approach-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.approach-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.approach-icon {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background-color: rgba(43, 185, 101, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.approach-icon i {
    font-size: 24px;
    color: #258412;
}

.approach-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #2C3E50;
}

.approach-card p {
    color: #6C757D;
    line-height: 1.6;
}

button.tab-btn {
    padding: 14px 40px;
    border-radius: 4px;
    border: 0px;
}

/* Industry Section */
.industry-section {
    padding: 80px 0;
}

ul.industry_list {
    list-style: none;
}

.industry-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.industry-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--wd-heading-color);
    margin-bottom: 1rem;
}

.industry-section .section-header p {
    font-size: 1.1rem;
    color: var(--wd-light-text-color);
    max-width: 600px;
    margin: 0 auto;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.industry-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--wd-border-radius);
    box-shadow: var(--wd-box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--wd-primary-color), var(--wd-secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    color: var(--wd-heading-color);
    margin-bottom: 15px;
}

.industry-card p {
    color: var(--wd-text-color);
    line-height: 1.6;
    margin-bottom: 0;
}



/* Services Grid */
#services-grid {
    background-color: #F8F9FA;
    padding: 50px 0;
}

.services-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}


.tab-btn {
    /* background: linear-gradient(90deg, var(--primary), #4ECDC4); */
    /* color: var(--white); */
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    /* background-color: #e4e4e4; */
    color: #FFFFFF;
    border-color: #258412;
}


/* .tab-btn.active,
.tab-btn:hover{
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    transform: translateY(-3px);
} */

.services-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-item {
    display: block;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: auto;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.service-content {
    padding: 24px;
    position: relative;
}

.service-icon {
    width: 40px;
    height: 40px;
    background-color: rgb(40 137 30);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    right: 10px;
    z-index: 3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 20px;
    color: #ffffff;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #2C3E50;
}

.service-content p {
    margin-bottom: 16px;
    color: #6C757D;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features li {
    background-color: #F8F9FA;
    color: #495057;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #258412;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #0A9A84;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Process Timeline */
#process {
    background-color: #FFFFFF;
    padding: 50px 0;
}

.process-timeline-horizontal {
    overflow-x: auto;
}

.timeline-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
}

.timeline-progress {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #E9ECEF;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    width: 16%;
    text-align: center;
}

.timeline-marker {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background-color: #258412;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -18px auto 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #1c2a3e;
}

.timeline-content p {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.5;
}

/* Testimonials Section */
#testimonials {
    background-color: #fff;
    position: relative;
    padding: 50px 0;
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.client-details {
    text-align: start;
}

 

.testimonial-content {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-quote {
    font-size: 36px;
    color: rgba(43, 185, 101, 0.2);
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #495057;
    font-style: italic;
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.client-image {
    min-width: 50px;
    min-height: 50px;
     max-width:50px;
    max-height: 50px;
    border-radius: 9999px;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-width: 40px;
    min-height: 40px;
}

.client-details h4 {
    margin-bottom: 4px;
    font-size: 18px;
    color: #2C3E50;
}

.client-details p {
    margin: 0;
    font-style: normal;
    font-size: 14px;
    color: #6C757D;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonial-prev,
.testimonial-next {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background-color: #FFFFFF;
    border: 1px solid #E9ECEF;
    color: #2C3E50;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #258412;
    color: #FFFFFF;
    border-color: #258412;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--wd-border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--wd-box-shadow);
}

.faq-question {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.faq-question i {
    color: var(--wd-primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    color: #4a5568;
    font-size: 16px;
    padding-top: 20px;
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
}

/* CTA Section */
#contact {
    padding: 50px 0px 70px 0px;
    background-color: #FFFFFF;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-content {
    padding-right: 40px;
}

.cta-content h2,
 .our_team-header h2  {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2C3E50;
}

.cta-content p {
    margin-bottom: 32px;
    color: #6C757D;
    line-height: 1.6;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cta-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 1.4rem;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--wd-heading-color);
}

/* Button Styles */
.btn-outline {
    background-color: transparent;
    color: #2C3E50;
    border: 2px solid #DEE2E6;
    padding: 10px 25px;
}

.btn-outline:hover {
    border-color: #258412;
    color: #fff;
    transform: translateY(-2px);
    background: linear-gradient(90deg, var(--wd-primary-color), #4ECDC4);
    border-color: #258412;
}

/* Animation Classes */
/* .section-scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
} */

.section-scroll-anim.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.ai-footer {
    padding: 60px 0 20px;
    background: #F8F9FA;
    color: #000000;
    font-size: 14px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

/* Company Info Styles */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
}

.footer-logo .logo-wd {
    color: var(--primary);
    margin-right: 4px;
}

.company-address p {
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

.company-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.contact-item i {
    color: var(--primary);
    font-size: 16px;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Menu Styles */
.footer-menu h4,
.footer-services h4,
.footer-downloads h4 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 0px;
}

.footer-nav ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li,
.footer-services ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a,
.footer-services ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-policy ul {
    display: flex;
    gap: 20px;
    list-style: none;
            flex-wrap: wrap; 
        justify-content: center;
}

.footer-nav ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary);
}

/* Services Columns */
.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-button {
    display: inline-block;
    margin-bottom: 0px;
}

.download-button img {
    max-width: 150px;
    height: auto;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0px;
    border-top: 1px solid #e5e5e5;
    flex-wrap: wrap;
}

.copyright p {
    margin: 0;
}

.copyright a {
    color: var(--primary);
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding-top: 20px;
}
.footer-policy, .copyright {
  padding-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #26851533;
    color: #258412;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background-color: var(--wd-primary-color);
    color: white;
    transform: translateY(-3px);
}

.demo-section {
    padding: 50px 0;
}


/* Privacy Policy */
.content-section {
    padding-top: 120px;
    padding-bottom: 70px;
    font-family: 'Inter', sans-serif;
}

.thank-you-page {
    width: 100%;
    background: rgb(43 185 101 / 8%);
    padding: 50px 0px;
    margin: 0px;
    text-align: center;
}

.box {
    background: white;
    padding: 20px;
    width: 60%;
    margin: 0 auto;
    flex: 1 1 250px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header_section {
    margin-bottom: 50px;
}

.header_section p {
    margin-bottom: 20px !important;
    width: 50%;
    margin: 0 auto;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.footer-menu h4 {
    margin-bottom: 16px;
    font-size: 18px !important;
}

.company-contact h4 {
    font-size: 18px !important;
    color: #2c3e50;
    margin: 0;
}









    .testimonial-slider {
        position: relative;
        width: 400px;
        margin: auto;
        overflow: hidden;
        min-height: 180px;
    }

    /* Smooth fade animation */
    .testimonial-card {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.7s ease, transform 0.7s ease;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
    }

    .testimonial-card.active {
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }

    /* Navigation buttons */
    .testimonial-prev,
    .testimonial-next {
        cursor: pointer;
        background: #333;
        color: #fff;
        border: none;
        padding: 8px 14px;
        margin: 10px;
        transition: 0.3s;
    }

    .testimonial-prev:hover,
    .testimonial-next:hover {
        background: #555;
    }




/* Responsive Footer */
@media (max-width: 992px) {
    .footer-wrapper {
        display: block !important;
    }

    .footer-company,
    .footer-downloads {
        grid-column: span 2;
    }

    /* Remove old nav styles that conflict with new header */
    .mobile-toggle {
        display: flex;
    }

    .footer-menu {
        margin-top: 40px;
    }

    .footer-company p {
        margin-bottom: 0;
    }

    .footer-company {
        max-width: 100% !important;
    }

    .creative-badge,
    .creative-description {
        margin: 30px auto !important;
    }

}

@media (max-width: 768px) {

.geo-blocks {
    gap: 1.2rem;
}
    .footer-company,
    .footer-menu,
    .footer-services,
    .footer-downloads {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0px;
        text-align: center;
    }

    .footer-menu h4 {
        margin-bottom: 14px;
    }

    .ai-footer {
        padding: 30px 0 20px;
    }

    .feature-list-bottom {
        margin-bottom: 30px;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 50px;
    }
section#process {
    padding-bottom: 0;
}
    .timeline-track {
        min-width: auto;
        display: block;
    }

    .timeline-progress {
        display: none;
    }

}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




/* Services Page Responsive Styles */
@media (max-width: 1024px) {

    .services-hero-content,
    .cta-container {
        grid-template-columns: 1fr;
    }

    .industry-card {
        margin-bottom: 25px !important;
    }

  .hero-image {
        order: -1;
        margin-bottom: 40px;
        width: 97.9%;
    }

    .cta-content {
        padding-right: 0;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .mob-none {
        display: none;
    }

    .industry-grid {
        display: block;
    }

    .industry-card {
        margin-top: 0px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 70px 0 80px;
    }

    .approach-cards {
        grid-template-columns: 1fr;
    }

    .services-masonry {
        grid-template-columns: 1fr;
    }

    /* .timeline-track {
        min-width: 600px;
    } */

    #our-approach,
    #services-grid,
    #process,
    #testimonials,
    #contact {
        padding: 40px 0;
    }

    .approach-header h2,
    .services-header h2,
    .process-header h2,
    .testimonials-header h2,
    .cta-content h2,
    .our_team-header h2 {
        font-size: 24px;
    }

    .services-hero-content {
        gap: 0px;
    }

    .hero-image img {
        margin-top: 20px;
    }

    .services-hero-content {
        display: inline-block;
    }

    .service-content {
        padding: 1.2rem;
        position: relative;
    }
.service-features {
    margin: 0 0 0px;
}
 .process-header {
    margin-bottom: 0px!important;
}
 .process-header .section-intro {
        margin-bottom: 10px;
    }
    .demo-section {
        padding: 40px 0;
    }

    .free_demo_title {
        font-size: 1.5rem !important;
    }

    .hero-description {
        font-size: 16px;
    }
    .case-study-image img {
    height: auto!important;
}
.cta-content p {
    font-size: 16px;
}
}

@media (max-width: 480px) {
    .services-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 200px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .testimonial-content {
        padding: 24px;
    }

    .testimonial-content p {
        font-size: 14px;
    }
    .client-details h4 {
    font-size: 16px;
}
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2,
    .cta-box h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links a.active {
        border-bottom: 2px solid var(--wd-primary-color);
    }

    /* Remove the old nav styles completely to avoid conflicts with ai-header styles */
    /*
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        visibility: hidden;
    }
    
    nav.active {
        max-height: 500px;
        padding: 1.5rem;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .nav-links li {
        margin: 0 0 1rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem 0;
    }
    */

    .process-timeline:before {
        left: 30px;
    }

    .process-step {
        padding-left: 90px;
    }

    .step-number {
        left: 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 0 80px;
    }
    /* .service-card {
    padding: 1.2rem;
} */

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

   .hero-buttons, .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .section-header h2,
    .cta-box h2 {
        font-size: 1.8rem !important;
    }

    #why-choose-us,
    .services-section,
    .process-section,
    .cta-section {
        padding: 50px 0;
    }

    .feature-card {
        flex-direction: column;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    .industry-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    }
    .industry-card h3 {
    font-size: 1.2rem;
}

    /* .service-card {
        padding: 1.5rem;
    } */

    .process-step {
        padding-left: 80px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Header & Navigation from ai-development.css */
.ai-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0px;
}

.ai-nav {
    padding: 20px 0px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1420px;
    margin: 0 auto;
    /* padding: 0 20px; */
    width: 100%;
}

/* Logo styles */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

img.logo-img {
    width: 100%;
    max-width: 250px;
}
/* Main navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    height: 100%;
    flex-grow: 1;
    max-width: 620px;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0 8px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--wd-primary-color);
}

/* Contact button */
.contact-button {
    background: linear-gradient(90deg, var(--wd-primary-color), #4ECDC4);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.contact-button:hover {
    background: linear-gradient(90deg, #219652, #4ECDC4);
    color: white;
}

.free_demo_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-subtitle-bottom {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.highlight-text {
    /* color: var(--primary); */
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.feature-list-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.feature-item i {
    color: var(--primary);
}

.industry-card {
    margin-bottom: 0px;
    width: 33.3%;
}

.industries-grid {
    display: flex;
    gap: 20px;
}

/* Projects Carousel Styles */
#recent-projects {
    padding: 80px 15px;
    background: var(--wd-background-light);
}

.projects-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.projects-carousel {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.project-slide {
   position: absolute;
    opacity: 0;
    /* transform: translateX(100px); */
    transition: all 1s ease;
}

.project-slide.active {
    display: block;
    opacity: 1;
    transition: all 1s ease;
    /* transform: translateX(0); */
    position: relative;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    align-items: center;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.project-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6C757D;
}

.project-date,
.project-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-date i,
.project-author i {
    color: var(--wd-primary-color);
}

.project-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--wd-heading-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.project-content p {
    color: var(--wd-text-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--wd-primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #1a8917;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    color: var(--wd-heading-color);
}

.carousel-btn:hover {
    background: var(--wd-primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-nav .prev-btn {
    margin-left: -25px;
}

.carousel-nav .next-btn {
    margin-right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #E9ECEF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--wd-primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--wd-primary-color);
    opacity: 0.7;
}

/* Project Buttons */
.project-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Legacy case studies grid for compatibility */
.case-studies-grid {
    display: flex;
    gap: 20px;
}

.case-study-card {
    background: var(--white);
    box-shadow: var(--wd-box-shadow);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.case-study-content {
    padding: 1.2rem;
}

.result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wd-primary-color);
    margin-bottom: 5px;
}

.case-study-results {
    display: flex;
    gap: 35px;
}

.pt-top {
    padding-top: 42px;
}

.trust-new-section {
    padding: 80px 0px 60px;
    background: #f4f9f3;
}
.trust-new-section .section-title {
    padding-bottom: 18px;
}
.nav-links a {
    margin: 0 auto;
    text-align: start;
    width: 100%;
    justify-content: center;
}

/* Mobile responsive navigation */
@media screen and (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }
    .case-study-results {
    gap: 12px;
}
    .nav-content {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 81px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FFFFFF;
        flex-direction: column;
        height: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin: 0;
        padding: 0 25px;
        visibility: hidden;
        gap: 0;
    }

    .nav-links a {
        padding: 1.2rem 0 !important;
    }

    .nav-links.active {
        max-height: 800px;
        overflow-y: auto;
        visibility: visible;
        padding: 0px 25px 25px;
        gap: 0;
    }

    .nav-links li {
        height: auto;
        width: 100%;
        margin: 0;
        flex-grow: initial;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Remove the old mobile nav styles to avoid conflicts */
    nav {
        position: static;
        background: transparent;
        flex-direction: row;
        align-items: center;
        padding: 0;
        max-height: none;
        overflow: visible;
        transition: none;
        box-shadow: none;
        visibility: visible;
    }

    .nav-actions {
        display: none;
    }

    #recent-projects {
        padding: 60px 0px;
    }

    .nav-links a {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: row;
        gap: 1.5rem;
        padding: 0px;
    }

    .ai-nav {
        padding: 20px 0;
    }

    .btn-primary {
        width: 100%;
    }

    .btn-outline {
        width: 100%;
    }
.approach-card p {
    margin-bottom: 5px;
}
    .footer-policy ul {
        display: flex;
        gap: 10px !important;
        list-style: none;

    }

    .footer-policy li a {
        font-size: 13px;
        padding: 5px;
        font-weight: 500;
    }

    .hero-stats {
        display: block;
    }

    .stat-item {
        display: flex;
        margin-top: 20px;
    }

    .stat-number {
        text-align: center;
    }

    .stat-label {
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .faq-question h3 {
        font-size: 14px;
        font-weight: 600;
    }

    .faq-answer p {
        font-size: 14px;
    }
.approach-card {
    padding: 1.2rem;
}

}

/* Responsive styles for projects carousel */
@media (max-width: 1024px) {
    .project-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .project-image {
        height: 100%;
    }

    .carousel-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .industries-grid {
        display: block;
    }

    .industry-card {
        width: 100%;
    }

    .case-studies-grid {
        display: block;
    }

    .case-study-card {
        width: 100%;
        margin-bottom: 10px;
    }

    .mt-top {
        margin-top: 20px;
    }

    #recent-projects {
        padding: 60px 0px;
    }

    .projects-carousel-container {
        padding: 20px 0;
    }

    .project-content {
        padding: 30px 20px;
    }

    .project-content h3 {
        font-size: 20px;
    }

    .project-buttons {
        flex-direction: column;
        align-items: center;
    }

    .project-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.05) 0%, rgba(78, 205, 196, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(rgba(37, 132, 18, 0.1), transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.tech-stack-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(rgba(78, 205, 196, 0.1), transparent 70%);
    bottom: -200px;
    left: -150px;
    z-index: 0;
}

.text-center {
    text-align: center;
}

.tech-stack-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.tech-stack-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.tech-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    gap: 10px;
}

.tech-tab {
    padding: 12px 28px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    user-select: none;
}

.tech-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tech-tab.active {
    background: linear-gradient(90deg, var(--primary), var(--wd-accent-color));
    color: white;
    border-color: white;
    box-shadow: 0 5px 15px rgba(37, 132, 18, 0.25);
}

.tech-content-wrapper {
    position: relative;
    z-index: 1;
}

.tech-content {
    display: none;
    animation: fadeInRight 0.5s ease-in-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tech-content.active {
    display: block;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-main {
    background-color: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
}

.tech-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tech-title i {
    font-size: 28px;
    margin-right: 18px;
    background: linear-gradient(135deg, var(--primary), var(--wd-accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.tech-title h3 {
    font-size: 26px;
    margin: 0;
    font-weight: 600;
}

.tech-main p {
    color: var(--wd-text-color);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 16px;
}

.tech-hexgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.hex-item {
    width: 100%;
    position: relative;
    padding-bottom: 115%;
    overflow: visible;
}

.hex-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    z-index: 1;
}

.hex-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 15%;
    z-index: 2;
}

.hex-content i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.hex-content span {
    font-size: 15px;
    font-weight: 600;
    color: var(--wd-heading-color);
    transition: all 0.3s ease;
}

.hex-item:hover::before {
    background: linear-gradient(135deg, var(--primary), var(--wd-accent-color));
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 132, 18, 0.2);
}

.hex-item:hover .hex-content i,
.hex-item:hover .hex-content span {
    color: white;
}

/* Add a subtle pulse animation to the tabs */
@keyframes subtle-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 132, 18, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 132, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 132, 18, 0);
    }
}

.tech-tab.active {
    animation: subtle-pulse 2s infinite;
}

@media (max-width: 992px) {
    .tech-hexgrid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-stack-header h2 {
        font-size: 32px;
    }

    .tech-title h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .tech-stack-section {
        padding: 70px 0;
    }
.section-intro {
        font-size: 16px;
        line-height: 1.4rem;
    }
    .section-subtitle-bottom {
        font-size: 17px;
    }
    .tech-showcase {
        gap: 20px;
    }

    .tech-main {
        padding: 25px;
    }

    .tech-hexgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tech-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tech-title i {
        font-size: 24px;
    }

    .tech-title h3 {
        font-size: 22px;
    }

    .tech-main p {
        font-size: 15px;
    }

    .industry-section {
        padding: 50px 0;
    }
}



@media (max-width: 480px) {

    .footer-offices {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .tech-hexgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tech-tabs {
        margin-bottom: 30px;
    }

    .tech-tab {
        margin-bottom: 8px;
        padding: 8px 16px;
        font-size: 13px;
    }

    .hex-content i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .hex-content span {
        font-size: 12px;
    }

    .tech-stack-header h2 {
        font-size: 28px;
    }

    .tech-main {
        padding: 20px;
    }
}