* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


:root {
  --primary-color: #ff4d00;
  --primary-dark: #e64300;
  --primary-light: #ff6633;
  --dark-bg: #0f172a;
  --dark-secondary: #1e293b;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --card-bg: #ffffff;
  --card-hover: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  color: #374151;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TOP HEADER */
.top-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 77, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.top-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.1), transparent);
  animation: topHeaderShimmer 8s ease-in-out infinite;
}

@keyframes topHeaderShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-email {
  color: #e0e0e0;
  text-decoration: none;
  transition: var(--transition-base);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-email::before {
  content: '✉';
  font-size: 14px;
  color: var(--primary-color);
}

.header-email:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.header-time {
  color: #b0b0b0;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  background: rgba(255, 77, 0, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  color: #e0e0e0;
  font-size: 16px;
  transition: var(--transition-base);
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
  background: rgba(255, 77, 0, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

/* MAIN NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar:hover::before {
  opacity: 0.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  height: 75px;
}

.logo-img {
  height: 100px;
  width: auto;
  transition: var(--transition-base);
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}


.logo:hover .logo-img {
  transform: translateY(-50%) scale(1.05);
}


nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 40px;
}

nav a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-base);
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  background: transparent;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

nav a:hover {
  color: var(--primary-color);
  background: rgba(255, 77, 0, 0.08);
  transform: translateY(-1px);
}

nav a:hover::before {
  width: 80%;
}

nav a.active {
  color: var(--primary-color);
  background: rgba(255, 77, 0, 0.1);
}

nav a.active::before {
  width: 80%;
}

.nav-quote-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: white;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
  margin-left: 12px;
  position: relative;
  overflow: hidden;
}

.nav-quote-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.nav-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.4);
}

.nav-quote-btn:hover::before {
  left: 100%;
}

.menu {
  display: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

.menu.open {
  transform: rotate(90deg);
}

/* HERO */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, #0b0f1c 0%, #1a1f2e 50%, #0b0f1c 100%);
  z-index: 1;
  margin-bottom: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/269077/pexels-photo-269077.jpeg?cs=srgb&dl=pexels-pixabay-269077.jpg&fm=jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  z-index: 1;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.88) 0%,
    rgba(10, 14, 39, 0.82) 50%,
    rgba(10, 14, 39, 0.88) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 800px;
  padding: 20px 0;
  animation: heroSlideIn 1s ease-out;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: subtitleGlow 3s ease-in-out infinite;
}

@keyframes subtitleGlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.hero-line {
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
  0%, 100% { width: 40px; }
  50% { width: 60px; }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  animation: descriptionFadeIn 1.2s ease-out 0.3s both;
}

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

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: buttonsSlideIn 1.4s ease-out 0.6s both;
}

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

.btn-primary, .btn-outline {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 77, 0, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid var(--primary-color);
  backdrop-filter: blur(10px);
  position: relative;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-outline:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

/* OUR SERVICES */
.our-services {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.our-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: servicesShimmer 8s ease-in-out infinite;
}

@keyframes servicesShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.our-services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 77, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 77, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.our-services .container {
  display: block;
  text-align: center;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.our-services h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-bg);
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: titleSlideIn 1s ease-out;
}

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

.our-services h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
  animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 77, 0, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 77, 0, 0.5); }
}

.services-description {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  animation: descriptionFadeIn 1.2s ease-out 0.3s both;
}

.services-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  font-weight: 500;
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(255, 77, 0, 0.15);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

.services-description p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 24px 24px 0 0;
}

/* SERVICES GRID SECTION */
.services-grid-section {
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.3), transparent);
  animation: gridShimmer 8s ease-in-out infinite;
}

@keyframes gridShimmer {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.services-grid-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 77, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 77, 0, 0.01) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.service-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: serviceItemFadeIn 1s ease-out both;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes serviceItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover::after {
  opacity: 1;
}

.service-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.18),
    0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 77, 0, 0.3);
}

.service-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 10px 25px rgba(255, 77, 0, 0.3);
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 25px 60px rgba(255, 77, 0, 0.45);
}

.service-item:hover .service-icon::before {
  opacity: 1;
}

.service-icon i {
  font-size: 28px;
  color: white;
  transition: transform 0.4s ease;
}

.service-item:hover .service-icon i {
  transform: scale(1.1);
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 15px;
  transition: color 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-item:hover .service-content h3 {
  color: var(--primary-color);
}

.service-content p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
  transition: color 0.4s ease;
  font-weight: 500;
}

.service-item:hover .service-content p {
  color: #475569;
}

.service-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.service-content ul li {
  color: #64748b;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  padding-left: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.service-item:hover .service-content ul li {
  color: #475569;
  padding-left: 40px;
}

.service-item:hover .service-content ul li::before {
  transform: scale(1.2);
}

.service-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(255, 77, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.service-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 45px rgba(255, 77, 0, 0.45);
}

.service-btn:hover::before {
  left: 100%;
}

/* Empty services grid styling */
.services-grid:empty::before {
  content: '🚀 Services coming soon...';
  display: block;
  text-align: center;
  font-size: 1.5rem;
  color: #94a3b8;
  font-weight: 600;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px dashed rgba(255, 77, 0, 0.3);
  animation: placeholderPulse 3s ease-in-out infinite;
}

@keyframes placeholderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* MODERN FOOTER */
.footer {
  background: linear-gradient(135deg, #0b0f1c 0%, #1a1f2e 50%, #0b0f1c 100%);
  color: var(--text-secondary);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 77, 0, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: footerShimmer 3s ease-in-out infinite;
}

@keyframes footerShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 77, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 77, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
  text-align: left;
}

.footer-logo-img {
  max-height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 77, 0, 0.3));
  transform: scale(1.05);
}

.footer-section h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.footer-section p,
.footer-section ul {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.footer-section ul li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

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

.footer-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-section a:hover::after {
  width: 100%;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 77, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* PAGE TRANSITIONS */
.page-transition {
  animation: fadeInUp 0.6s ease-out;
}

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


/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-header {
    display: none;
  }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 77, 0, 0.1);
  }
  
  nav.active {
    display: flex;
  }
  
  nav a {
    padding: 10px 12px;
    margin: 2px 0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  
  nav a:hover {
    background: rgba(255, 77, 0, 0.1);
    transform: translateX(4px);
  }
  
  .nav-quote-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .menu {
    display: block;
  }
  
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
  }
  
  .menu-overlay.active {
    display: block;
  }
  
  .logo-img {
    height: 65px;
    left: 0px;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 0;
  }
  
  .hero-background {
    background-attachment: scroll;
  }
  
  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(10, 14, 39, 0.95) 0%,
      rgba(10, 14, 39, 0.9) 50%,
      rgba(10, 14, 39, 0.95) 100%
    );
  }
  
  .hero-container {
    padding: 0 20px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0;
  }
  
  .hero-subtitle {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .our-services {
    padding: 60px 0 40px;
  }
  
  .services-description {
    margin-bottom: 40px;
  }
  
  .services-description p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-item {
    padding: 30px 25px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 28px;
  }
  
  .service-content h3 {
    font-size: 1.2rem;
  }
  
  .service-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .our-services {
    padding: 50px 0 30px;
  }
  
  .services-grid {
    gap: 25px;
  }
  
  .service-item {
    padding: 25px 20px;
  }
}

/* ========================================
   NEWSLETTER SUBSCRIPTION STYLES
   ======================================== */

.newsletter-form {
  margin-top: 20px;
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255, 77, 0, 0.2);
  border-radius: 8px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}

.newsletter-input-group input::placeholder {
  color: #999;
}

.newsletter-btn {
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-message {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.newsletter-message.show {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.newsletter-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.newsletter-benefits {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 12px;
}

/* Newsletter responsive styles */
@media (max-width: 768px) {
  .newsletter-input-group {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .newsletter-benefits {
    margin-top: 16px;
  }
  
  .benefit-item {
    font-size: 12px;
  }
}

/* FOOTER LOGO STYLES */
.footer-logo {
  margin-bottom: 20px;
  text-align: left;
}

.footer-logo-img {
  max-height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 77, 0, 0.3));
  transform: scale(1.05);
}

/* ========================================
   PROJECT PROCESS SECTION STYLES
   ======================================== */

.project-process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.project-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.3), transparent);
  animation: processShimmer 8s ease-in-out infinite;
}

@keyframes processShimmer {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.project-process-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 77, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 77, 0, 0.01) 0%, transparent 50%);
  pointer-events: none;
}

.project-process-section .container {
  display: block;
  text-align: center;
  flex-direction: column;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

.process-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-bg);
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: processTitleSlideIn 1s ease-out;
}

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

.process-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.3);
  animation: processUnderlineGlow 3s ease-in-out infinite;
}

@keyframes processUnderlineGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 77, 0, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 77, 0, 0.5); }
}

.process-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 30px auto 0;
  line-height: 1.6;
  font-weight: 500;
  animation: processDescriptionFadeIn 1.2s ease-out 0.3s both;
}

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

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.process-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: processItemFadeIn 1s ease-out both;
}

.process-item:nth-child(1) { animation-delay: 0.1s; }
.process-item:nth-child(2) { animation-delay: 0.2s; }
.process-item:nth-child(3) { animation-delay: 0.3s; }
.process-item:nth-child(4) { animation-delay: 0.4s; }
.process-item:nth-child(5) { animation-delay: 0.5s; }
.process-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes processItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.process-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.process-item:hover::before {
  transform: scaleX(1);
}

.process-item:hover::after {
  opacity: 1;
}

.process-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 77, 0, 0.3);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 15px 35px rgba(255, 77, 0, 0.35);
}

.process-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-item:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 45px rgba(255, 77, 0, 0.45);
}

.process-item:hover .process-icon::before {
  opacity: 1;
}

.process-icon i {
  font-size: 36px;
  color: white;
  transition: transform 0.4s ease;
}

.process-item:hover .process-icon i {
  transform: scale(1.1);
}

.process-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 15px;
  transition: color 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-item:hover .process-content h3 {
  color: var(--primary-color);
}

.process-content p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  transition: color 0.4s ease;
  font-weight: 500;
}

.process-item:hover .process-content p {
  color: #475569;
}

/* Process responsive styles */
@media (max-width: 768px) {
  .project-process-section {
    padding: 60px 0;
  }
  
  .process-header {
    margin-bottom: 40px;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .process-item {
    padding: 30px 25px;
  }
  
  .process-icon {
    width: 60px;
    height: 60px;
  }
  
  .process-icon i {
    font-size: 28px;
  }
  
  .process-content h3 {
    font-size: 1.2rem;
  }
  
  .process-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .project-process-section {
    padding: 50px 0;
  }
  
  .process-timeline {
    gap: 25px;
    padding: 0 15px;
  }
  
  .process-item {
    padding: 25px 20px;
  }
  
  .process-icon {
    width: 50px;
    height: 50px;
  }
  
  .process-icon i {
    font-size: 24px;
  }
  
  .process-content h3 {
    font-size: 1.1rem;
  }
  
  .process-content p {
    font-size: 0.9rem;
  }
}

/* ========================================
   TECHNOLOGIES SECTION STYLES
   ======================================== */

.technologies-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.technologies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.3), transparent);
  animation: techShimmer 8s ease-in-out infinite;
}

@keyframes techShimmer {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.technologies-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 77, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 77, 0, 0.01) 0%, transparent 50%);
  pointer-events: none;
}

.technologies-section .container {
  display: block;
  text-align: center;
  flex-direction: column;
}

.technologies-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

.technologies-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-bg);
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: techTitleSlideIn 1s ease-out;
}

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

.technologies-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.3);
  animation: techUnderlineGlow 3s ease-in-out infinite;
}

@keyframes techUnderlineGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 77, 0, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 77, 0, 0.5); }
}

.technologies-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 30px auto 0;
  line-height: 1.6;
  font-weight: 500;
  animation: techDescriptionFadeIn 1.2s ease-out 0.3s both;
}

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

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
  clear: both;
}

.tech-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.06),
    0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: techItemFadeIn 1s ease-out both;
}

.tech-item:nth-child(1) { animation-delay: 0.05s; }
.tech-item:nth-child(2) { animation-delay: 0.1s; }
.tech-item:nth-child(3) { animation-delay: 0.15s; }
.tech-item:nth-child(4) { animation-delay: 0.2s; }
.tech-item:nth-child(5) { animation-delay: 0.25s; }
.tech-item:nth-child(6) { animation-delay: 0.3s; }
.tech-item:nth-child(7) { animation-delay: 0.35s; }
.tech-item:nth-child(8) { animation-delay: 0.4s; }
.tech-item:nth-child(9) { animation-delay: 0.45s; }
.tech-item:nth-child(10) { animation-delay: 0.5s; }
.tech-item:nth-child(11) { animation-delay: 0.55s; }
.tech-item:nth-child(12) { animation-delay: 0.6s; }
.tech-item:nth-child(13) { animation-delay: 0.65s; }
.tech-item:nth-child(14) { animation-delay: 0.7s; }
.tech-item:nth-child(15) { animation-delay: 0.75s; }
.tech-item:nth-child(16) { animation-delay: 0.8s; }

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

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tech-item:hover::before {
  transform: scaleX(1);
}

.tech-item:hover::after {
  opacity: 1;
}

.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 77, 0, 0.3);
}

.tech-item i {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-item:hover i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 5px 15px rgba(255, 77, 0, 0.3));
}

.tech-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: block;
}

.tech-item:hover span {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Technologies responsive styles */
@media (max-width: 768px) {
  .technologies-section {
    padding: 60px 0;
  }
  
  .technologies-header {
    margin-bottom: 40px;
  }
  
  .technologies-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  
  .tech-item {
    padding: 25px 15px;
  }
  
  .tech-item i {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .tech-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .technologies-section {
    padding: 50px 0;
  }
  
  .technologies-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
    padding: 0 15px;
  }
  
  .tech-item {
    padding: 20px 10px;
  }
  
  .tech-item i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .tech-item span {
    font-size: 0.75rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed !important;           /* Ensure fixed positioning */
    bottom: 20px !important;              /* distance from bottom */
    right: 20px !important;               /* distance from right */
    z-index: 99997 !important;            /* lower than chatbot toggle */
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background-color: #25D366 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.whatsapp-float img {
    width: 25px;
    height: 25px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

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

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .chatbox-toggle {
        bottom: 15px;
        right: 70px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
