@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Reset and Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0F172A; /* Slate 900 */
  --primary-light: #1E293B; /* Slate 800 */
  --primary-dark: #090D1A; /* Sleek Dark Navy */
  --secondary: #F97316; /* Vibrant Orange */
  --secondary-light: #FB923C;
  --secondary-dark: #EA580C;
  --secondary-glow: rgba(249, 115, 22, 0.3);
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-muted-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --border-dark: #334155;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 25px 0 var(--secondary-glow);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* Common Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-dark .section-header p {
  color: var(--text-muted-light);
}

/* Highlight Text */
.text-orange {
  color: var(--secondary) !important;
}

/* Gradient Background Text */
.text-gradient {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--text-light);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(15, 23, 42, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-light);
}

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

/* Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.5rem 0;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* If on landing pages that have light backgrounds at the very top, we adjust */
.header-light-mode:not(.scrolled) {
  background-color: transparent;
}

.header.scrolled .nav-link {
  color: var(--text-light);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo svg {
  width: 36px;
  height: 36px;
  transition: transform var(--transition-normal);
}

.logo:hover svg {
  transform: rotate(15deg);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light); /* Default light, since navigation is dark navy context */
}

.logo-text-dark {
  color: var(--primary);
}

.header-light-mode:not(.scrolled) .logo-text {
  color: var(--primary);
}

.header-light-mode:not(.scrolled) .nav-link {
  color: var(--primary-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--secondary) !important;
}

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

.nav-link.active {
  color: var(--secondary) !important;
  font-weight: 600;
}

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

/* Burger Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.burger-bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--text-light);
  transition: all var(--transition-normal);
}

.header-light-mode:not(.scrolled) .burger-bar {
  background-color: var(--primary);
}

.nav-toggle.open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .burger-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Page Hero Template */
.page-hero {
  padding: 9.5rem 0 5rem;
  background-color: var(--primary-dark);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(249, 115, 22, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(15, 23, 42, 0.8) 0px, transparent 50%);
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--text-muted-light);
}

/* Home Hero Section */
.hero {
  padding: 10.5rem 0 6rem;
  background-color: var(--primary-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(at 100% 0%, rgba(249, 115, 22, 0.15) 0px, transparent 40%),
    radial-gradient(at 0% 100%, rgba(15, 23, 42, 0.8) 0px, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
}

.hero-image-container {
  position: relative;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}

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

/* About Preview */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-preview-img-container {
  position: relative;
}

.about-preview-img-card {
  background-color: var(--primary-light);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.about-preview-img-card::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--secondary);
  border-radius: 24px;
  opacity: 0.15;
  pointer-events: none;
}

.about-card-badge {
  background-color: rgba(249, 115, 22, 0.15);
  color: var(--secondary);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-card-text {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--font-heading);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.about-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-light);
}

.about-author-info h4 {
  font-size: 1rem;
  color: var(--text-light);
}

.about-author-info p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.about-preview-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-preview-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
}

/* Services Preview Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.3);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--secondary);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--secondary);
  color: var(--text-light);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card .btn-link {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.service-card .btn-link svg {
  transition: transform var(--transition-normal);
}

.service-card:hover .btn-link {
  color: var(--secondary);
}

.service-card:hover .btn-link svg {
  transform: translateX(4px);
}

/* Technologies Section */
.tech-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tech-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
  color: var(--secondary-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background-color: var(--primary-light);
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-normal);
}

.tech-badge:hover {
  transform: translateX(6px);
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.tech-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.tech-badge:hover .tech-icon-circle {
  background-color: var(--secondary);
  color: var(--text-light);
}

.tech-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Client Testimonials Slider */
.testimonials-slider-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1.5rem 1rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  font-size: 10rem;
  color: rgba(249, 115, 22, 0.08);
  font-family: Georgia, serif;
  position: absolute;
  top: -20px;
  left: 30px;
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.testimonial-author-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Slider Controls */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.testimonial-dot.active {
  background-color: var(--secondary);
  width: 28px;
  border-radius: 9999px;
}

/* Animated Counters / Stats */
.stats-section {
  padding: 4.5rem 0;
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

.stat-item p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Final CTA Section */
.cta-section {
  background-color: var(--primary-dark);
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at center, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.75rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.cta-box p {
  color: var(--text-muted-light);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

/* Detailed Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-muted-light);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
  color: var(--text-light);
}

.footer-tagline {
  font-size: 1rem;
  color: var(--text-muted-light);
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.9rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-icon:hover {
  background-color: var(--secondary);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.social-icon-light {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary);
}

.social-icon-light:hover {
  background-color: var(--secondary);
  color: var(--text-light) !important;
  border-color: var(--secondary);
}

.footer-col h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-info-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  transform: translateY(10px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-4px);
}

/* Service Detail Sections (Services Page) */
.service-detail-section {
  padding: 6.5rem 0;
}

.service-detail-section:nth-child(even) {
  background-color: var(--bg-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.service-detail-section:nth-child(even) .service-detail-grid {
  grid-template-columns: 1.1fr 1fr;
}

.service-detail-section:nth-child(even) .service-detail-content-col {
  order: 2;
}

.service-detail-image-col {
  position: relative;
}

.service-detail-img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--primary-light);
}

.service-detail-content-col h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.service-detail-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary);
}

.feature-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* About Us Core Layouts (About Page) */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
}

.about-intro-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-pillar-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.about-pillar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-pillar-card h3 svg {
  color: var(--secondary);
}

.about-pillar-card p {
  color: var(--text-muted);
}

/* Why Choose Us Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: var(--bg-white);
  padding: 2.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.25);
}

.why-card-icon {
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Process Section Timeline */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 100%;
}

.timeline-item::after {
  content: '';
  display: table;
  clear: both;
}

.timeline-badge {
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: 0 0 0 6px var(--bg-light);
  z-index: 2;
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-badge {
  background-color: var(--primary);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2);
}

.timeline-panel {
  width: 44%;
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  transition: all var(--transition-normal);
}

.timeline-item:nth-child(odd) .timeline-panel {
  float: left;
}

.timeline-item:nth-child(even) .timeline-panel {
  float: right;
}

.timeline-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.25);
}

.timeline-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.timeline-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact Page Layouts (Contact Us Page) */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.contact-form-card {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-form-grid .form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--bg-light);
  transition: all var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

textarea.form-control {
  resize: vertical;
}

.form-error-msg {
  color: #EF4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
  font-weight: 500;
}

.form-group.has-error .form-control {
  border-color: #EF4444;
  background-color: rgba(239, 68, 68, 0.03);
}

.form-group.has-error .form-error-msg {
  display: block;
}

.contact-form-btns {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-form-btns .btn {
  flex: 1;
}

/* Form success overlay */
.form-success-container {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.1);
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-container h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.form-success-container p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Contact Info Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-info-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-map-placeholder {
  height: 250px;
  border-radius: 16px;
  background-color: var(--primary-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}

.map-overlay svg {
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.map-overlay h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.map-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

/* Consultation Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: var(--bg-white);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  transform: translateY(-20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--primary);
}

.modal-box h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.modal-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Intersection Observer Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-scale {
  transform: scale(0.9);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem !important; }
  .hero-content h1 { font-size: 2.75rem !important; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  .hero {
    padding: 8.5rem 0 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 2.5rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .testimonial-card {
    padding: 2.5rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  /* Mobile Menu Transitions */
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem;
    gap: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25);
    transition: right var(--transition-normal);
    z-index: 1000;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-link {
    font-size: 1.15rem;
    width: 100%;
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .service-detail-section:nth-child(even) .service-detail-content-col {
    order: unset;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline::before {
    left: 20px;
  }
  .timeline-badge {
    left: 20px;
  }
  .timeline-panel {
    width: calc(100% - 50px);
    float: right !important;
    margin-left: 50px;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 480px) {
  .services-grid, .tech-container, .why-grid, .stats-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .contact-form-card {
    padding: 1.75rem;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-grid .form-group-full {
    grid-column: span 1;
  }
  .contact-form-btns {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }
}
