/*
* A Designs in Between - Digital Marketing Website
* Author: A Designs in Between
* Version: 1.0
*/

/* ===== Base Styles ===== */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: rgba(37, 99, 235, 0.1);
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --secondary-light: rgba(16, 185, 129, 0.1);
    --accent-color: #f97316;
    --accent-dark: #ea580c;
    --accent-light: rgba(249, 115, 22, 0.1);
    --dark-color: #0f172a;
    --darker-color: #020617;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    --gray-dark: #334155;
    --gray-light: #e2e8f0;
    --text-color: #64748b;
    --heading-color: #1e293b;
    --success-color: #22c55e;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
  
    /* Typography */
    --font-heading: "Poppins", sans-serif;
    --font-body: "Montserrat", sans-serif;
  
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
  
    /* Other */
    --border-radius-sm: 0.25rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 2rem;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.2s ease;
  }
  
  /* Dark Mode Colors */
  [data-theme="dark"] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: rgba(59, 130, 246, 0.1);
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --secondary-light: rgba(16, 185, 129, 0.1);
    --accent-color: #f97316;
    --accent-dark: #ea580c;
    --accent-light: rgba(249, 115, 22, 0.1);
    --dark-color: #f8fafc;
    --darker-color: #e2e8f0;
    --light-color: #0f172a;
    --gray-color: #94a3b8;
    --gray-dark: #cbd5e1;
    --gray-light: #1e293b;
    --text-color: #cbd5e1;
    --heading-color: #f1f5f9;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  
  /* Reset & Base Styles */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
  }
  
  body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    transition: var(--transition);
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  h4 {
    font-size: 1.5rem;
  }
  
  h5 {
    font-size: 1.25rem;
  }
  
  h6 {
    font-size: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  ul,
  ol {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button,
  input,
  textarea,
  select {
    font-family: var(--font-body);
    font-size: 1rem;
  }
  
  button {
    cursor: pointer;
    border: none;
    background: none;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Preloader */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .preloader.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader {
    position: relative;
    width: 80px;
    height: 80px;
  }
  
  .loader svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  
  #loader-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: loader-animation 2s ease-in-out infinite;
  }
  
  @keyframes loader-animation {
    0% {
      stroke-dashoffset: 200;
    }
    50% {
      stroke-dashoffset: 0;
    }
    100% {
      stroke-dashoffset: -200;
    }
  }
  
  .loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Custom Cursor */
  .cursor-dot,
  .cursor-dot-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
  }
  
  .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
  }
  
  .cursor-dot-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.2);
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  [data-theme="dark"] .header {
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
  }
  
  .logo {
    width: 80px;
    height: auto;
    display: block;
    padding: 5px;
    border-radius: 5px;
    background-color: white;
  }
  
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .nav-list {
    display: flex;
    align-items: center;
  }
  
  .nav-link {
    color: var(--heading-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-color);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleX(1);
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .theme-toggle:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .theme-toggle .fa-sun {
    display: none;
  }
  
  [data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
  }
  
  [data-theme="dark"] .theme-toggle .fa-sun {
    display: block;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    gap: 0.5rem;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  }
  
  .btn-light {
    background-color: white;
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .btn-block {
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--heading-color);
    transition: var(--transition);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 1001;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  
  [data-theme="dark"] .mobile-menu {
    background-color: var(--dark-color);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .mobile-menu-close:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .mobile-nav {
    margin-bottom: 2rem;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--heading-color);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
  }
  
  .mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
  }
  
  .mobile-menu-footer {
    margin-top: auto;
  }
  
  .mobile-menu-contact {
    margin-bottom: 1.5rem;
  }
  
  .mobile-menu-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .mobile-menu-social {
    display: flex;
    gap: 1rem;
  }
  
  .mobile-menu-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .mobile-menu-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
  }
  
  /* Hero Section */
  .hero {
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
  }
  
  .hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .hero-stats {
    display: flex;
    gap: 2rem;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--text-color);
  }
  
  .hero-visual {
    position: relative;
  }
  
  .hero-image {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .shape {
    position: absolute;
    border-radius: 50%;
  }
  
  .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-light));
    top: -100px;
    right: -100px;
    animation: rotate 15s linear infinite;
  }
  
  .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--accent-light), var(--primary-light));
    bottom: -50px;
    left: 50px;
    animation: rotate 10s linear infinite reverse;
  }
  
  .shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--secondary-light), var(--accent-light));
    top: 50%;
    left: -50px;
    animation: rotate 12s linear infinite;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .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-color);
    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(--light-color);
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .section-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  
  .section-header h2 {
    margin-bottom: 1rem;
  }
  
  .section-header p {
    color: var(--text-color);
  }
  
  .client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .client-logo {
    flex: 0 0 calc(20% - 2rem);
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
  }
  
  .client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
  }
  
  /* Services Section */
  .services {
    padding: 5rem 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  [data-theme="dark"] .service-card {
    background-color: var(--gray-light);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-light);
    z-index: -1;
    transition: var(--transition);
  }
  
  .service-card:hover::before {
    height: 100%;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
  }
  
  .service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
  }
  
  .service-card h3 {
    margin-bottom: 1rem;
  }
  
  .service-card p {
    margin-bottom: 1.5rem;
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
  }
  
  .service-link i {
    transition: var(--transition);
  }
  
  .service-link:hover {
    color: var(--primary-dark);
  }
  
  .service-link:hover i {
    transform: translateX(5px);
  }
  
  /* Process Section */
  .process {
    padding: 5rem 0;
    background-color: var(--light-color);
    position: relative;
  }
  
  .process-timeline {
    position: relative;
    padding: 2rem 0;
  }
  
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-light);
  }
  
  .timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .timeline-content {
    width: 45%;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  [data-theme="dark"] .timeline-content {
    background-color: var(--gray-light);
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
  }
  
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
  }
  
  .timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  /* Work Section */
  .work {
    padding: 5rem 0;
    background-color: var(--light-color);
  }
  
  .work-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    background-color: transparent;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .work-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .work-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
  }
  
  .work-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }
  
  .work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .work-item:hover .work-image img {
    transform: scale(1.1);
  }
  
  .work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .work-item:hover .work-overlay {
    opacity: 1;
  }
  
  .work-info {
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
  }
  
  .work-item:hover .work-info {
    transform: translateY(0);
  }
  
  .work-info h3 {
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .work-info p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
  }
  
  .work-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .work-link:hover {
    background-color: var(--primary-dark);
    color: white;
  }
  
  .work-cta {
    text-align: center;
    margin-top: 3rem;
  }
  
  /* About Section */
  .about {
    padding: 5rem 0;
    background-color: var(--light-color);
  }
  
  .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  
  .about-content h2 {
    margin-bottom: 1.5rem;
  }
  
  .about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-experience {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
  }
  
  .experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .experience-text {
    font-size: 0.875rem;
  }
  
  .about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .value-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  [data-theme="dark"] .value-item {
    background-color: var(--gray-light);
  }
  
  .value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
  }
  
  .value-item:hover .value-icon {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
  }
  
  .testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    padding: 1rem 0;
  }
  
  .testimonial {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  [data-theme="dark"] .testimonial {
    background-color: var(--gray-light);
  }
  
  .testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
  }
  
  .testimonial-rating {
    color: #f59e0b;
    margin-bottom: 1rem;
  }
  
  .testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    margin-bottom: 0.25rem;
  }
  
  .author-info p {
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 0;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
  }
  
  .testimonial-prev:hover,
  .testimonial-next:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .testimonial-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-light);
    transition: var(--transition);
  }
  
  .testimonial-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 10px;
  }
  
  /* CTA Section */
  .cta {
    padding: 5rem 0;
    background-color: var(--light-color);
  }
  
  .cta-wrapper {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .cta-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
  }
  
  .cta-content {
    color: white;
    max-width: 600px;
  }
  
  .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    margin-bottom: 0;
    opacity: 0.9;
  }
  
  /* Footer */
  .footer {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    width: 80px;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    background-color: white;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-dark);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
  }
  
  .footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
  }
  
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-col ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-col ul li a {
    color: var(--gray-color);
    transition: var(--transition);
  }
  
  .footer-col ul li a:hover {
    color: white;
    padding-left: 0.5rem;
  }
  
  .footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-contact li i {
    color: var(--primary-color);
  }
  
  .footer-newsletter h4 {
    color: white;
    margin-bottom: 1rem;
  }
  
  .newsletter-form {
    display: flex;
    height: 50px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0 1.5rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: var(--gray-dark);
    color: white;
  }
  
  .newsletter-form button {
    width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    transition: var(--transition);
  }
  
  .newsletter-form button:hover {
    background-color: var(--primary-dark);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-dark);
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-dark);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
  }
  
  .back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
  }
  
  .footer-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
    top: -150px;
    right: 10%;
  }
  
  .footer-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.05), rgba(249, 115, 22, 0.05));
    bottom: -100px;
    left: 5%;
  }
  
  /* Page Header */
  .page-header {
    padding: 10rem 0 5rem;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
  }
  
  .page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  .page-header-content h1 {
    margin-bottom: 1rem;
  }
  
  .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .breadcrumb a {
    color: var(--primary-color);
  }
  
  .breadcrumb .separator {
    color: var(--text-color);
  }
  
  .breadcrumb .current {
    color: var(--text-color);
  }
  
  .page-header-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    top: -100px;
    right: -100px;
  }
  
  .page-header-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(37, 99, 235, 0.1));
    bottom: -50px;
    left: 50px;
  }
  
  .page-header-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(249, 115, 22, 0.1));
    top: 50%;
    left: -50px;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 5rem 0;
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-details {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-item {
    display: flex;
    gap: 1rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .contact-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-text p {
    margin-bottom: 0;
    font-size: 0.875rem;
  }
  
  .contact-social h3 {
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
  }
  
  .form-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
  }
  
  [data-theme="dark"] .form-card {
    background-color: var(--gray-light);
  }
  
  .form-card h3 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .input-with-icon {
    position: relative;
  }
  
  .input-with-icon i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-color);
  }
  
  .input-with-icon.textarea i {
    top: 1.5rem;
  }
  
  .input-with-icon input,
  .input-with-icon textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    transition: var(--transition);
  }
  
  .input-with-icon input:focus,
  .input-with-icon textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
    outline: none;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .checkbox-group input {
    width: 18px;
    height: 18px;
  }
  
  .checkbox-group label {
    margin-bottom: 0;
    font-size: 0.875rem;
  }
  
  .map-section {
    padding-bottom: 5rem;
  }
  
  .map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  /* Popup */
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .popup:target {
    opacity: 1;
    visibility: visible;
  }
  
  .popup-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--box-shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
  }
  
  [data-theme="dark"] .popup-content {
    background-color: var(--gray-light);
  }
  
  .popup:target .popup-content {
    transform: scale(1);
  }
  
  .popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--success-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
  }
  
  .popup-content h3 {
    margin-bottom: 1rem;
  }
  
  .popup-content p {
    margin-bottom: 2rem;
  }
  
  /* Legal Pages */
  .legal-content {
    padding: 5rem 0;
  }
  
  .legal-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
  }
  
  [data-theme="dark"] .legal-card {
    background-color: var(--gray-light);
  }
  
  .legal-section {
    margin-bottom: 2.5rem;
  }
  
  .legal-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
  }
  
  .legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .legal-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .legal-footer p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    h1,
    .hero-title {
      font-size: 3rem;
    }
  
    h2 {
      font-size: 2.25rem;
    }
  
    .services-grid,
    .work-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .about-values {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    h1,
    .hero-title {
      font-size: 2.5rem;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    .hero .container,
    .about-wrapper,
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
  
    .hero-visual {
      order: -1;
      margin-bottom: 3rem;
    }
  
    .footer-top {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .footer-nav {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .process-timeline::before {
      left: 30px;
    }
  
    .timeline-number {
      left: 30px;
    }
  
    .timeline-content {
      width: calc(100% - 80px);
    }
  
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
      margin-left: 80px;
      margin-right: 0;
    }
  
    .testimonial {
      flex: 0 0 calc(50% - 2rem);
    }
  }
  
  @media (max-width: 768px) {
    h1,
    .hero-title {
      font-size: 2.25rem;
    }
  
    h2 {
      font-size: 1.75rem;
    }
  
    .main-nav {
      display: none;
    }
  
    .mobile-menu-toggle {
      display: flex;
    }
  
    .services-grid,
    .work-grid,
    .about-values {
      grid-template-columns: 1fr;
    }
  
    .hero-cta,
    .hero-stats {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .cta-wrapper {
      flex-direction: column;
      text-align: center;
      padding: 3rem 2rem;
    }
  
    .contact-details {
      grid-template-columns: 1fr;
    }
  
    .testimonial {
      flex: 0 0 100%;
    }
  
    .legal-card {
      padding: 2rem;
    }
  
    .legal-footer {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    h1,
    .hero-title {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    h3 {
      font-size: 1.25rem;
    }
  
    .container {
      padding: 0 1rem;
    }
  
    .section-header {
      margin-bottom: 2rem;
    }
  
    .hero {
      padding: 8rem 0 4rem;
    }
  
    .hero-cta {
      margin-bottom: 2rem;
    }
  
    .hero-cta .btn {
      width: 100%;
    }
  
    .client-logos {
      justify-content: center;
    }
  
    .client-logo {
      flex: 0 0 calc(50% - 2rem);
    }
  
    .work-filter {
      flex-direction: column;
      align-items: center;
    }
  
    .filter-btn {
      width: 100%;
      text-align: center;
    }
  
    .about-stats {
      flex-direction: column;
      gap: 1rem;
    }
  
    .about-experience {
      position: relative;
      bottom: auto;
      right: auto;
      margin-top: 1.5rem;
    }
  
    .testimonial-controls {
      gap: 1rem;
    }
  
    .form-card {
      padding: 1.5rem;
    }
  
    .contact-social .social-icons {
      justify-content: center;
    }
  
    .footer-nav {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  