/* ===== GLOBAL STYLES ===== */
:root {
  /* Main Colors */
  --dark: #121212;
  --dark-light: #1E1E1E;
  --dark-surface: #2D3748;
  --light: #F7FAFC;
  --light-muted: #E2E8F0;
  --accent-blue: #4299E1;
  --accent-green: #48BB78;
  --border-color: #252525;
  
  /* Additional Colors */
  --muted-text: #A0AEC0;
  --warning: #F6AD55;
  --success: #48BB78;
  --danger: #E53E3E;
  --dark-hover: #252525;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

p {
  color: var(--light-muted);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

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

.highlight {
  color: var(--accent-blue);
}

.tag {
  display: inline-block;
  font-family: monospace;
  color: var(--accent-green);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.hidden {
  display: none !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: var(--light);
}

.btn-primary:hover {
  background-color: #2b6cb0;
  color: var(--light);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
}

.btn-outline:hover {
  background-color: rgba(66, 153, 225, 0.1);
  color: var(--accent-blue);
}

.btn-green {
  background-color: var(--accent-green);
  color: var(--light);
}

.btn-green:hover {
  background-color: #38a169;
  color: var(--light);
}

.btn-full {
  width: 100%;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 9999px;
}

.badge.blue {
  background-color: rgba(66, 153, 225, 0.2);
  color: var(--accent-blue);
}

.badge.green {
  background-color: rgba(72, 187, 120, 0.2);
  color: var(--accent-green);
}

/* ===== HEADER & NAVIGATION ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

#header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.company-logo {
  height: 65px;
  width: 65px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: row;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.highlight-blue {
  color: var(--accent-blue);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--light);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--accent-blue);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background-color: var(--dark);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b') center center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 1s ease;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.certifications {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.certifications span {
  font-size: 0.9rem;
  color: var(--light-muted);
  margin-bottom: 10px;
}

.cert-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cert-icons img {
  height: 40px;
  width: auto;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.cert-icons img:hover {
  filter: brightness(1);
}

.hero-terminal {
  background-color: var(--dark-surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  animation: fadeInRight 1s ease;
  position: relative;
}

.hero-terminal::before {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border: 2px solid var(--accent-blue);
  border-radius: 15px;
  opacity: 0.2;
  z-index: -1;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.terminal-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: var(--dark-light);
  border-bottom: 1px solid var(--border-color);
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.terminal-button.red {
  background-color: #E53E3E;
}

.terminal-button.yellow {
  background-color: #F6AD55;
}

.terminal-button.green {
  background-color: #48BB78;
}

.terminal-title {
  margin-left: auto;
  margin-right: auto;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--light-muted);
}

.terminal-body {
  padding: 20px;
  font-family: monospace;
  font-size: 0.9rem;
}

.terminal-body p {
  margin-bottom: 10px;
}

.terminal-body .success {
  color: var(--accent-green);
}

.terminal-body .warning {
  color: var(--warning);
}

.progress-bar {
  height: 8px;
  background-color: var(--dark-surface);
  border-radius: 4px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-fill {
  height: 100%;
  background-color: var(--accent-blue);
  width: 0;
  border-radius: 4px;
  transition: width 2s ease-out;
  animation: progressAnimation 2s ease-out forwards;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: var(--dark-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
  background-color: var(--dark);
  padding: 80px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.solution-card {
  background-color: var(--dark-surface);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(66, 153, 225, 0.2);
}

.solution-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(66, 153, 225, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-icon i {
  font-size: 1.5rem;
  color: var(--accent-blue);
}

.solution-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.solution-features {
  list-style: none;
  margin-bottom: 20px;
}

.solution-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.solution-features li i {
  color: var(--accent-green);
  margin-right: 10px;
  font-size: 0.8rem;
}

.solution-footer {
  margin-top: auto;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.service-card {
  background-color: var(--dark);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(66, 153, 225, 0.2);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-icon.blue {
  color: var(--accent-blue);
}

.service-icon.green {
  color: var(--accent-green);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.learn-more {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.learn-more i {
  margin-left: 6px;
  font-size: 0.8rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 60px 0;
  background-color: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-value.blue {
  color: var(--accent-blue);
}

.stat-value.green {
  color: var(--accent-green);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--dark-light);
}

/* ===== TEAM SECTION ===== */
.team-section {
  background-color: var(--dark);
  padding: 100px 0;
}

.team-join-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.team-card {
  background-color: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(66, 153, 225, 0.2);
}

.team-img {
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-role {
  margin-bottom: 15px;
  font-weight: 500;
}

.team-role.blue {
  color: var(--accent-blue);
}

.team-role.green {
  color: var(--accent-green);
}

.team-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--dark-surface);
  color: var(--light-muted);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: rgba(66, 153, 225, 0.1);
  color: var(--accent-blue);
  transform: translateY(-3px);
}

.approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.approach-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-blue);
  color: var(--light);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.badge-value {
  font-size: 1.8rem;
  font-weight: 700;
}

.badge-text {
  font-size: 0.8rem;
}

.approach-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.approach-points {
  margin: 30px 0;
}

.approach-point {
  display: flex;
  margin-bottom: 20px;
}

.approach-point i {
  margin-top: 5px;
  margin-right: 15px;
}

.approach-point h4 {
  margin-bottom: 5px;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies-section {
  background-color: var(--dark-light);
  padding: 80px 0;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.case-study-card {
  background-color: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(66, 153, 225, 0.2);
}

.case-study-content {
  padding: 30px;
}

.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 15px;
  font-weight: 500;
}

.case-tag.finance {
  background-color: rgba(66, 153, 225, 0.2);
  color: var(--accent-blue);
}

.case-tag.healthcare {
  background-color: rgba(72, 187, 120, 0.2);
  color: var(--accent-green);
}

.case-tag.enterprise {
  background-color: rgba(237, 137, 54, 0.2);
  color: #ED8936;
}

.case-study-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.case-results {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.result-item {
  flex: 1;
}

.result-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 5px;
}

.result-label {
  font-size: 0.8rem;
  color: var(--light-muted);
}

.case-points {
  list-style: none;
  margin-bottom: 25px;
}

.case-points li {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.case-points li i {
  color: var(--accent-green);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--dark-surface);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--border-color);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stars {
  color: #F6AD55;
}

.quote-icon {
  color: var(--accent-blue);
  font-size: 1.5rem;
}

.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--light);
}

.testimonial-footer {
  display: flex;
  align-items: center;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  background-color: var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 1px solid var(--border-color);
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.client-info h4 {
  margin-bottom: 3px;
}

.client-info p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--dark-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.map-section {
  margin-top: 30px;
}

.map-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 450px;
}

.file-label {
  display: block;
  margin-bottom: 8px;
}

.file-input {
  background-color: var(--dark-surface);
  border: 1px dashed var(--border-color);
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  color: var(--light-muted);
}

.file-input::-webkit-file-upload-button {
  background-color: var(--dark-surface);
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
  padding: 8px 16px;
  border-radius: 4px;
  margin-right: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-input::-webkit-file-upload-button:hover {
  background-color: rgba(66, 153, 225, 0.1);
}

.contact-info {
  background-color: var(--dark);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-item i {
  margin-top: 5px;
  margin-right: 15px;
  font-size: 1.2rem;
}

.highlight-text {
  color: var(--accent-green);
  font-weight: 500;
}

.info-item h4 {
  margin-bottom: 5px;
}

.social-links h4 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--dark-surface);
  color: var(--light-muted);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: rgba(66, 153, 225, 0.1);
  color: var(--accent-blue);
}

.contact-form {
  background-color: var(--dark);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.contact-form h3 {
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  color: var(--light);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.form-check input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--light-muted);
}

.error-message {
  color: var(--danger);
  font-size: 0.8rem;
  position: absolute;
  bottom: -18px;
  left: 0;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 3rem;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.form-success h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.form-success p {
  margin-bottom: 30px;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
  background-color: var(--dark);
  padding-top: 80px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about {
  max-width: 400px;
}

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

.footer-company-logo {
  height: 65px;
  width: 65px;
  object-fit: contain;
}

.footer-logo .logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--light);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: var(--light-muted);
}

.footer-social a:hover {
  color: var(--accent-blue);
}

.footer-links h4 {
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

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

.footer-links a {
  color: var(--light-muted);
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--light-muted);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background-color: var(--dark);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b') center center;
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--light);
}

.breadcrumbs {
  font-size: 0.95rem;
  color: var(--light-muted);
}

.breadcrumbs a {
  color: var(--light);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-blue);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressAnimation {
  from {
    width: 0;
  }
  to {
    width: 75%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.03);
  }
}

/* AOS Animation Styles */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  .hero-section .container {
    grid-template-columns: 1fr;
  }
  
  .approach-section {
    grid-template-columns: 1fr;
  }
  
  .experience-badge {
    bottom: 20px;
    right: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 10px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .services-grid {
    gap: 20px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
}