:root {
    --primary-gradient: linear-gradient(135deg, #14919B
    0%, #46DFB1 100%);
    --secondary-gradient: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    --text-gradient: linear-gradient(135deg, #14919B
    0%, #46DFB1 100%);
    --primary-color: #0B6478
    ;
    --primary-light: #46DFB1;
    --primary-dark: #0B6478
    ;
    --secondary-color: #3a7bd5;
    --secondary-light: #5a9be5;
    --secondary-dark: #2a5ba5;
    --text-color: #1a1a2e;
    --text-light: #4a4a6a;
    --text-lighter: #7a7a9a;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #f1f2f3;
    --border-color: #e2e8f0;
    --border-dark: #cbd5e0;
    --success-color: #38a169;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.07), 0 20px 25px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 40px 50px rgba(0, 0, 0, 0.07);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  
/* Custom Cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: transform 0.1s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--primary-gradient);
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gradient-text {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scale(0);
    opacity: 0;
    border-radius: var(--border-radius-full);
    transition: var(--transition);
}

.btn:hover::after {
    transform: scale(1);
    opacity: 1;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(58, 123, 213, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.mobile-menu-toggle {
    display: block;
    width: 2rem;
    height: 2rem;
    position: relative;
    z-index: 101;
}

.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.hamburger {
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before, .hamburger::after {
    content: '';
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: translate(-50%, 0) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: translate(-50%, 0) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.4) 0%, rgba(255, 107, 61, 0.4) 100%);
    animation: float 15s ease-in-out infinite alternate;
}

.shape-2 {
    bottom: -15%;
    left: -10%;
    width: 35vw;
    height: 35vw;
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.4) 0%, rgba(0, 210, 255, 0.4) 100%);
    animation: float 20s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    top: 30%;
    left: 10%;
    width: 15vw;
    height: 15vw;
    background: linear-gradient(135deg, rgba(255, 107, 61, 0.3) 0%, rgba(255, 51, 102, 0.3) 100%);
    animation: float 25s ease-in-out infinite alternate;
}

.shape-4 {
    top: 20%;
    right: 15%;
    width: 20vw;
    height: 20vw;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.3) 0%, rgba(58, 123, 213, 0.3) 100%);
    animation: float 18s ease-in-out infinite alternate-reverse;
}

.shape-5 {
    top: -10%;
    right: 20%;
    width: 30vw;
    height: 30vw;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.3) 0%, rgba(255, 107, 61, 0.3) 100%);
    animation: float 22s ease-in-out infinite alternate;
}

.shape-6 {
    bottom: -15%;
    left: 25%;
    width: 25vw;
    height: 25vw;
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.3) 0%, rgba(0, 210, 255, 0.3) 100%);
    animation: float 17s ease-in-out infinite alternate-reverse;
}

.shape-7 {
    top: -5%;
    left: 10%;
    width: 20vw;
    height: 20vw;
    background: linear-gradient(135deg, rgba(255, 107, 61, 0.3) 0%, rgba(255, 51, 102, 0.3) 100%);
    animation: float 19s ease-in-out infinite alternate;
}

.shape-8 {
    bottom: -10%;
    right: 5%;
    width: 25vw;
    height: 25vw;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.3) 0%, rgba(58, 123, 213, 0.3) 100%);
    animation: float 23s ease-in-out infinite alternate-reverse;
}

.shape-9 {
    top: -15%;
    left: 30%;
    width: 35vw;
    height: 35vw;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.3) 0%, rgba(255, 107, 61, 0.3) 100%);
    animation: float 21s ease-in-out infinite alternate;
}

.shape-10 {
    bottom: -20%;
    right: 15%;
    width: 30vw;
    height: 30vw;
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.3) 0%, rgba(0, 210, 255, 0.3) 100%);
    animation: float 16s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    max-width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 0.875rem;
}

.floating-element i {
    color: var(--primary-color);
}

.fe-1 {
    top: 10%;
    left: -10%;
    animation: float-element 4s ease-in-out infinite;
}

.fe-2 {
    top: 40%;
    right: -10%;
    animation: float-element 4s ease-in-out 1s infinite;
}

.fe-3 {
    bottom: 10%;
    left: 10%;
    animation: float-element 4s ease-in-out 2s infinite;
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Clients Section */
.clients {
    padding: 3rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll 10s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    padding: 0 2rem;
    /* opacity: 0.7; */
    transition: var(--transition);
    /* filter: grayscale(100%); */
    height: 150px;
    width: 250px;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-tabs {
    position: relative;
    z-index: 2;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: var(--border-radius-full);
    transition: var(--transition);
    background-color: var(--bg-light);
}

.tab-btn:hover {
    color: var(--primary-color);
    background-color: var(--bg-dark);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  
  .tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .tab-btn {
    padding: 10px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    border-radius: 50px;
  }
  
  .tab-btn.active {
    background: var(--primary-gradient);
    color: white;
  }
  
  
  
  

/* @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.tab-content-text {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.tab-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tab-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tab-list {
    margin-bottom: 2rem;
}

.tab-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.tab-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary-gradient);
}

.tab-content-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tab-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 51, 102, 0.3), rgba(58, 123, 213, 0.3));
}

/* Case Studies Section */
.case-studies {
    justify-content: center;

    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.case-studies-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.case-study-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.case-study-card:hover .case-study-overlay {
    opacity: 1;
}

.case-study-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: var(--text-color);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transform: translateY(20px);
    transition: var(--transition);
}

.case-study-card:hover .case-study-link {
    transform: translateY(0);
}

.case-study-link:hover {
    background: var(--primary-gradient);
    color: white;
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.case-study-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.case-study-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.case-study-stats {
    display: flex;
    gap: 1.5rem;
}

.cs-stat {
    display: flex;
    flex-direction: column;
}

.cs-stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cs-stat-label {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.case-studies-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Team Section */
.team {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .team-member-overlay {
    opacity: 1;
}

.team-member-social {
    display: flex;
    gap:  1rem;
}

.team-member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: white;
    color: var(--text-color);
    border-radius: 50%;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.team-member-social a:nth-child(1) {
    --i: 1;
}

.team-member-social a:nth-child(2) {
    --i: 2;
}

.team-member-social a:nth-child(3) {
    --i: 3;
}

.team-member:hover .team-member-social a {
    transform: translateY(0);
}

.team-member-social a:hover {
    background: var(--primary-gradient);
    color: white;
}

.team-member-content {
    padding: 1.5rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member-bio {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-right: 2rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.testimonial-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--bg-light);
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author-company {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: white;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1.5rem;
}

.testimonial-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--bg-dark);
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-gradient);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--text-light);
}

.contact-social {
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-social h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    position: relative;
}

.form-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.2);
    background-color: white;
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.form-success.active {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--success-color);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-full);
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu .btn {
    width: 100%;
}

/* Media Queries */
@media (min-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form .btn {
        flex-shrink: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }

    .nav-cta {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero {
        padding: 8rem 0 5rem;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        max-width: 50%;
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-image {
        display: block;
        width: 45%;
    }

    .tab-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .case-studies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}