/* ===== MODERN WEB DEVELOPMENT SERVICES STYLES ===== */
:root {
    --primary: #559BBA;
    --primary-light: #6FC1E4;
    --secondary: #E14B05;
    --secondary-light: #FF5E1A;
    --accent: #FFD166;
    --dark: #2C3E50;
    --darker: #1A1A2E;
    --light: #FFFFFF;
    --lighter: #F9F7F3;
    --gray: #A5A9AA;
    --gray-light: #E0E0E0;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    --container-width: 1400px;
    --section-padding: 8rem 0;
    --edge-spacing: 4rem;
  }
  
  /* ===== BASE STYLES ===== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--lighter);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
  }
  
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--edge-spacing);
  }
  
  section {
    padding: var(--section-padding);
    position: relative;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 5rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 3px;
  }
  
  .section-header .section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .section-dark {
    background-color: var(--dark);
    color: var(--light);
  }
  
  .section-dark .section-header h2::after {
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 0.5rem;
  }
  
  .btn i {
    transition: var(--transition);
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(85, 155, 186, 0.3);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(85, 155, 186, 0.4);
  }
  
  .btn-primary:hover i {
    transform: translateX(3px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
    transform: translateY(-3px);
  }
  
  .btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Gradient text effect */
  .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  /* ===== HERO SECTION ===== */
  .hero-section {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-text {
    flex: 1;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
    padding: 30px;
  }
  
  .hero-text h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
  }
  
  .hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    max-width: 600px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  
  .hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
  }
  
  .hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  }
  
  .hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  }
  
  /* Dot animation for hero */
  .hero-dots {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 25px 25px;
    z-index: -1;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
  }
  
  /* ===== STATS SECTION ===== */
  .stats-section {
    position: relative;
    overflow: hidden;
  }
  
  .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker), var(--dark));
    z-index: -1;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    transition: var(--transition);
  }
  
  .stat-card:hover .stat-number {
    color: var(--light);
  }
  
  .stat-label {
    font-size: 1.1rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* ===== SERVICES GRID SECTION ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .service-card {
    background: var(--light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
  }
  
  .service-card:hover::before {
    transform: scaleX(1);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(225, 75, 5, 0.1), rgba(255, 209, 102, 0.1));
    border-radius: 20px;
    font-size: 2rem;
    color: var(--secondary);
    transition: var(--transition-slow);
  }
  
  .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--light);
    transform: rotate(15deg) scale(1.1);
  }
  
  .service-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    transition: var(--transition);
    text-align: center;
  }
  
  .service-card:hover .service-title {
    color: var(--secondary);
  }
  
  .service-description {
    color: var(--gray);
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .service-hover-content {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
  }
  
  .service-card:hover .service-hover-content {
    opacity: 1;
    height: auto;
  }
  
  .service-hover-content ul {
    list-style: none;
    margin-bottom: 2rem;
    width: 100%;
  }
  
  .service-hover-content li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
  }
  
  .service-hover-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
  }
  
  .service-card:hover .service-description {
    opacity: 0;
    height: 0;
    margin-bottom: 0;
  }
  
  .services-cta {
    text-align: center;
    margin-top: 4rem;
  }
  
  /* ===== PROCESS SECTION ===== */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .process-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .process-step:hover .step-number {
    transform: scale(1.1) rotate(15deg);
  }
  
  .process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--light);
    text-align: center;
  }
  
  .process-step p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  /* ===== PROJECTS/PORTFOLIO SECTION ===== */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .project-card {
    background: var(--light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .project-image {
    height: 250px;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    border-radius: 0;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.05);
  }
  
  .project-info {
    padding: 2rem;
  }
  
  .project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
  }
  
  .project-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
  }
  
  .project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  
  .project-tags span {
    background: rgba(85, 155, 186, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .project-results {
    background: rgba(255, 209, 102, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
  }
  
  .project-results p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--dark);
  }
  
  .project-results strong {
    color: var(--secondary);
  }
  
  .projects-cta {
    text-align: center;
    margin-top: 4rem;
  }
  
  /* ===== CTA SECTION ===== */
  .cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--darker));
    color: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.3;
  }
  
  .cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .cta-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
  }
  
  /* ===== FOOTER ===== */
  .footer-section {
    background-color: var(--darker);
    color: var(--light);
    padding: 6rem 0 0;
    position: relative;
  }
  
  .footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--edge-spacing);
  }
  
  .footer-column {
    padding: 0 1rem;
  }
  
  .footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
  }
  
  .footer-column p, .footer-column li {
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column li {
    margin-bottom: 0.8rem;
  }
  
  .footer-column li:hover {
    opacity: 1;
    transform: translateX(5px);
  }
  
  .footer-column li a:hover {
    color: var(--accent);
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: var(--transition);
    font-size: 1.1rem;
  }
  
  .footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: var(--container-width);
    margin: 0 auto;
  }
  
  /* ===== BACK TO TOP BUTTON ===== */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border: none;
    box-shadow: 0 4px 15px rgba(225, 75, 5, 0.3);
    font-size: 1.2rem;
  }
  
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background: var(--secondary-light);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(225, 75, 5, 0.4);
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 1200px) {
    :root {
      --edge-spacing: 3rem;
    }
  }
  
  @media (max-width: 1024px) {
    :root {
      --section-padding: 6rem 0;
      --edge-spacing: 2rem;
    }
    
    .hero-section {
      flex-direction: column;
      text-align: center;
      padding: 8rem 0;
    }
    
    .hero-text {
      padding-right: 0;
      margin-bottom: 4rem;
    }
    
    .hero-buttons {
      justify-content: center;
    }
    
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    :root {
      --section-padding: 5rem 0;
    }
    
    .hero-text h1 {
      font-size: 3rem;
    }
    
    .section-header h2 {
      font-size: 2.2rem;
    }
    
    .stats-grid,
    .process-steps {
      grid-template-columns: 1fr;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    :root {
      --section-padding: 4rem 0;
      --edge-spacing: 1.5rem;
    }
    
    .hero-text h1 {
      font-size: 2.5rem;
    }
    
    .hero-buttons {
      flex-direction: column;
    }
    
    .btn {
      width: 100%;
    }
    
    .service-card {
      padding: 2rem 1.5rem;
    }
    
    .footer-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* ===== TRENDY EFFECTS ===== */
  /* Selection color */
  ::selection {
    background: var(--secondary-light);
    color: white;
  }
  
  /* Scrollbar styling */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--lighter);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-light);
  }
  
  /* Floating dots animation for various sections */
  .services-dots {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
  }
  
  .process-dots {
    position: absolute;
    top: 50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 12px 12px;
    z-index: -1;
    opacity: 0.1;
    animation: float 7s ease-in-out infinite;
  }
  
  .projects-dots {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: -1;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
  }





  /* ===== TECH STACK SECTION ===== */
.tech-stack-section {
  background-color: var(--lighter);
  position: relative;
  overflow: hidden;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tech-item {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--primary);
  color: var(--light);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: var(--transition);
}

.tech-item:hover .tech-icon {
  color: var(--light);
  transform: scale(1.2);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background-color: var(--light);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--lighter);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: var(--light);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(85, 155, 186, 0.1), rgba(255, 209, 102, 0.1));
  border-radius: 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  transform: rotate(15deg) scale(1.1);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  font-size: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--light);
  position: relative;
  padding-left: 1.5rem;
}

.faq-item h3::before {
  content: 'Q.';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.faq-item p {
  color: var(--gray-light);
  font-size: 1rem;
  padding-left: 1.5rem;
}

/* ===== FLOWING GRAPHIC ===== */
.flowing-graphic {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
}

.graphic-path {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary) 20%, 
    var(--secondary) 50%, 
    var(--primary) 80%, 
    transparent 100%);
  background-size: 200% 100%;
  animation: flowingGradient 15s linear infinite;
}

.graphic-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--darker) 100%);
}

@keyframes flowingGradient {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* ===== TEXT CENTER UTILITY ===== */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* ===== BUTTON OUTLINE VARIANT ===== */
.btn-outline {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-3px);
}

/* ===== PROJECT CARD STYLES ===== */
.project-card {
  background: var(--light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.project-image {
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  border-radius: 0;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-info {
  padding: 2rem;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.project-info p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.project-tags span {
  background: rgba(85, 155, 186, 0.1);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-results {
  background: rgba(255, 209, 102, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
}

.project-results p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--dark);
}

.project-results strong {
  color: var(--secondary);
}