/**
* Template Name: Lenux Modern
* Updated: 2025
* Modern, clean design with gradient accents and smooth animations
*/

/*--------------------------------------------------------------
# CSS Custom Properties (Variables)
--------------------------------------------------------------*/
:root {
  /* Colors */
  --primary-color: #1e40af;
  --secondary-color: #1d4ed8;
  --accent-color: #dc2626;
  --header-bg: #1f2937;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --white: #ffffff;
  --light-bg: #f9fafb;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #1e40af;
  --warning-color: #dc2626;
  --error-color: #ef4444;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --accent-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  --hero-gradient: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #dc2626 100%);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/*--------------------------------------------------------------
# Reset and Base Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-normal);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Header/Navigation
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.3);
  z-index: 1000;
  transition: var(--transition-normal);
}

#header.header-scrolled {
  background: var(--header-bg);
  box-shadow: 0 6px 30px rgba(31, 41, 55, 0.4);
  border-bottom: 2px solid var(--accent-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.navbar .nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  position: relative;
  transition: var(--transition-normal);
  text-decoration: none;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color);
}

/* Ensure text stays light on dark header */
#header.header-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

#header.header-scrolled .logo-text {
  color: var(--white);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-normal);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.cta-button {
  background: var(--accent-gradient);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-md);
  margin-left: 20px;
  font-weight: 600;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white) !important;
}

.cta-button::after {
  display: none;
}

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
}

/* Ensure mobile toggle stays light on dark header */
#header.header-scrolled .mobile-nav-toggle {
  color: var(--white);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-gradient);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #f093fb 0%, #f5f7fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-buttons {
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 500;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 24px;
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 10%;
  right: 15%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: 3s;
}

.card-4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 4.5s;
}

.central-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tech-circle {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 20s linear infinite;
}

.tech-circle i {
  font-size: 48px;
  color: var(--white);
}

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

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: var(--section-padding);
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 24px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
  margin-bottom: 24px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--light-bg);
}

.about-visual {
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.tech-item {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
  border-top: 3px solid var(--primary-color);
}

.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--accent-color);
}

.tech-item i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.tech-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
}

.content .lead {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.expertise-areas {
  margin-bottom: 40px;
}

.expertise-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.expertise-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.expertise-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon i {
  font-size: 24px;
  color: var(--white);
}

.expertise-content h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.expertise-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background: var(--white);
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--border-color);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.service-icon i {
  font-size: 36px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.rapid-dev {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.care {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.security {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.sustainability {
  background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
}

.certification {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.support {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.service-content h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 24px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background: var(--light-bg);
}

.features-list {
  padding-right: 40px;
}

.feature-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 32px;
  color: var(--white);
}

.feature-content h4 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.features-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-dashboard {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 400px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.dashboard-title {
  font-weight: 600;
  color: var(--text-dark);
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--success-color);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success-color);
  animation: pulse 2s infinite;
}

.dashboard-content {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
}

.metric-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon i {
  font-size: 18px;
  color: var(--white);
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

.dashboard-chart {
  height: 80px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.chart-bar {
  flex: 1;
  background: var(--primary-gradient);
  border-radius: 2px 2px 0 0;
  animation: chartGrow 2s ease-out;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes chartGrow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--white);
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact-icon i {
  font-size: 36px;
  color: var(--white);
}

.contact-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-content p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 32px;
}

.contact-email:hover {
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  color: var(--text-dark);
  padding: 80px 0 0;
  border-top: 3px solid var(--primary-color);
}

.footer-content {
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}

.footer-description {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

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

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links-section h4 {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 1.125rem;
}

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

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

.footer-links-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-normal);
}

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

.footer-bottom {
  border-top: 2px solid var(--accent-color);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-normal);
}

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

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 999;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader::before {
  content: "";
  width: 60px;
  height: 60px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .navbar ul {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero-visual {
    height: 300px;
    margin-top: 40px;
  }
  
  .floating-card {
    padding: 12px 16px;
    font-size: 0.875rem;
  }
  
  .floating-card i {
    font-size: 20px;
  }
  
  .tech-circle {
    width: 80px;
    height: 80px;
  }
  
  .tech-circle i {
    font-size: 32px;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-stats {
    justify-content: center;
    gap: 30px;
  }
  
  .features-list {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .expertise-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-buttons .ms-3 {
    margin-left: 0 !important;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .tech-item {
    padding: 16px;
  }
  
  .contact-card {
    padding: 40px 24px;
  }
}

/*--------------------------------------------------------------
# Animation Classes for AOS
--------------------------------------------------------------*/
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos="fade-up"] {
  transform: translate3d(0, 100px, 0);
}

[data-aos="fade-down"] {
  transform: translate3d(0, -100px, 0);
}

[data-aos="fade-left"] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos="fade-right"] {
  transform: translate3d(100px, 0, 0);
}

[data-aos="zoom-in"] {
  transform: scale(0.6);
}

[data-aos="zoom-out"] {
  transform: scale(1.2);
}