:root {
  /* Professional Tech Color Palette - Matching Logo */
  --primary-color: #2F80ED;        /* Electric Blue - Primary accent */
  --primary-dark: #1E2A44;         /* Deep Navy - Headers */
  --primary-light: #56CCF2;        /* Soft Cyan - Highlights */
  --secondary-color: #6C5CE7;      /* Violet - Secondary accent */
  --dark: #4A5568;                 /* Neutral Dark Gray - Body text */
  --light: #F7F9FC;                /* Off-White - Backgrounds */
  --gray: #718096;                 /* Medium Gray */
  --white: #ffffff;
  --success: #10b981;
  /* Logo-inspired gradients: Cyan to Purple */
  --gradient: linear-gradient(135deg, #00BCD4 0%, #7B52AB 100%);
  --accent-gradient: linear-gradient(135deg, #00BCD4 0%, #7B52AB 100%);
  --hero-gradient: linear-gradient(135deg, #2C3E50 0%, #00BCD4 40%, #7B52AB 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:not(.btn):hover {
  color: var(--primary-color);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(47, 128, 237, 0.25);
}

.navbar a:hover {
  text-decoration: none;
}

.contact-section .contact-item-content a:hover {
  color: var(--secondary-color) !important;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(123, 82, 171, 0.35);
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Header Banner */
.headerBanner {
  background-color: #0F1419;
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  width: 100%;
}

.headerBanner a {
  color: var(--white);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

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

.headerBanner .btn {
  margin-left: 20px;
  padding: 5px 15px;
  font-size: 14px;
}

.headerCTA {
  font-weight: 600;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
}

.nav-image {
  width: 80px;
  margin-right: 10px;
  vertical-align: middle;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark) !important;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
}

#mainNav.scrolled .navbar-logo {
  height: 40px;
}

.navbar-brand .brand-text {
  color: var(--dark);
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 700;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--gradient) !important;
  color: white !important;
  border: 2px solid transparent !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  margin-left: 1rem;
  font-weight: 600;
  box-sizing: border-box;
}

.nav-cta:hover {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7),
    0 8px 20px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1);
  border: 2px solid transparent !important;
  transform: none !important;
}

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

/* Dropdown Menu */
.dropdown-menu {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
}

.dropdown-item {
  color: var(--dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(10, 102, 194, 0.1) 0%, transparent 100%);
  color: var(--primary-color);
  padding-left: 2rem;
}

/* Enable dropdown on hover for desktop */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease-in-out;
  }
  
  .navbar-nav .dropdown-menu {
    margin-top: 0;
  }
}

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

.dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(0, 0, 0, 0.1);
}

.dropdown-toggle::after {
  margin-left: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--gradient);
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><pattern id="circuit" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="4" fill="%2300BCD4" opacity="0.6"/><circle cx="180" cy="180" r="4" fill="%2300BCD4" opacity="0.6"/><circle cx="100" cy="100" r="4" fill="%237B52AB" opacity="0.6"/><circle cx="60" cy="140" r="3" fill="%2300BCD4" opacity="0.5"/><circle cx="140" cy="60" r="3" fill="%237B52AB" opacity="0.5"/><line x1="20" y1="20" x2="100" y2="100" stroke="%2300BCD4" stroke-width="1.5" opacity="0.4"/><line x1="100" y1="100" x2="180" y2="180" stroke="%2300BCD4" stroke-width="1.5" opacity="0.4"/><line x1="60" y1="140" x2="100" y2="100" stroke="%237B52AB" stroke-width="1" opacity="0.3"/><line x1="100" y1="100" x2="140" y2="60" stroke="%237B52AB" stroke-width="1" opacity="0.3"/><rect x="18" y="18" width="8" height="8" fill="%237B52AB" opacity="0.5"/><rect x="96" y="96" width="8" height="8" fill="%2300BCD4" opacity="0.5"/><rect x="176" y="176" width="8" height="8" fill="%237B52AB" opacity="0.5"/><path d="M 40 40 L 50 40 L 50 50 L 40 50 Z" fill="none" stroke="%2300BCD4" stroke-width="1" opacity="0.4"/><path d="M 150 150 L 160 150 L 160 160 L 150 160 Z" fill="none" stroke="%237B52AB" stroke-width="1" opacity="0.4"/><circle cx="80" cy="80" r="2" fill="%2300BCD4" opacity="0.4"/><circle cx="120" cy="120" r="2" fill="%237B52AB" opacity="0.4"/><circle cx="40" cy="160" r="2" fill="%2300BCD4" opacity="0.4"/><circle cx="160" cy="40" r="2" fill="%237B52AB" opacity="0.4"/></pattern></defs><rect width="800" height="600" fill="url(%23circuit)"/></svg>');
  background-size: 600px 600px;
  opacity: 0.3;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(10, 102, 194, 0.03) 0px,
      transparent 1px,
      transparent 40px,
      rgba(10, 102, 194, 0.03) 41px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 212, 255, 0.03) 0px,
      transparent 1px,
      transparent 40px,
      rgba(0, 212, 255, 0.03) 41px
    ),
    radial-gradient(
      circle at 20% 30%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(10, 102, 194, 0.1) 0%,
      transparent 50%
    );
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  color: white;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  color: white;
}

.hero-image {
  position: relative;
  height: 500px;
  z-index: 10;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
  z-index: 15;
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.floating-card i {
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-card span {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

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

.card-2 {
  top: 35%;
  right: 5%;
  animation-delay: 1s;
}

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

.card-4 {
  top: 85%;
  right: 15%;
  animation-delay: 2.5s;
}

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

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.6s both;
}

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

/* Utility Classes */
.primary-text {
  color: var(--primary-color) !important;
}

.text-uppercase {
  text-transform: uppercase;
}

/* Section Styles */
.section-header {
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-title .text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(30, 42, 68, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(47, 128, 237, 0.15);
}

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.05) 0%,
    rgba(108, 92, 231, 0.05) 100%
  );
}

.features-section {
  margin-bottom: 4rem;
}

.features-img img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gradient);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features i {
  color: var(--success);
  font-size: 0.9rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.why-choose-image .image-placeholder {
  background: var(--gradient);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

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

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-content p {
  color: var(--gray);
  margin: 0;
}

/* Technologies Section */
.technologies-section {
  padding: 5rem 0;
  background-color: var(--light);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  padding: 0 2rem;
}

.tech-item {
  text-align: center;
  padding: 2rem 2.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  min-width: 140px;
  flex: 0 1 auto;
}

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

.tech-item i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.tech-item span {
  font-weight: 600;
  color: var(--dark);
}

/* CTA Section */
.cta-section {
  background: var(--gradient);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="30" fill="rgba(0, 212, 255, 0.03)"/></svg>'),
    radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(10, 102, 194, 0.03) 0%, transparent 60%);
  background-size: 150px 150px, 100% 100%, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0;
  z-index: 1;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white !important;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: white;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-section .btn-light {
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--primary-color);
  background: white;
  border: none;
}

.cta-section .btn-light:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.95),
    var(--shadow-xl);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #0F1419;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #E2E8F0;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.footer-brand-link {
  color: var(--primary-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-brand-link:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 10px rgba(86, 204, 242, 0.3);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link i {
  color: inherit;
}

.social-link:hover {
  background: var(--accent-gradient);
  color: white;
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact i {
  color: var(--primary-color);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

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

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

/* Buttons */
.btn-primary {
  background: var(--gradient) !important;
  border: none !important;
  color: white !important;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: white !important;
  border: none !important;
  color: var(--primary-color) !important;
  box-shadow: inset 0 0 0 2px var(--primary-color),
    0 0 25px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-buttons .btn-primary:hover {
  background: var(--gradient) !important;
  color: white !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.95),
    0 0 25px rgba(255, 255, 255, 0.4);
}

.nav-cta.btn-primary:hover {
  transform: none !important;
}

.btn-primary:focus {
  background: var(--gradient) !important;
  border: none !important;
  color: white !important;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.btn:focus,
.btn:focus-visible,
.btn:active:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.6) !important;
  border-color: transparent !important;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 2rem;
    justify-content: center;
  }
  
  .stat-item {
    flex: 0 0 auto;
  }

  .hero-image {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
  
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .tech-item {
    padding: 1.5rem;
  }
  
  .tech-item i {
    font-size: 2.5rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 2rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-bottom: 1rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-title {
    margin-top: 1.5rem;
  }
  
  .footer-title:first-child {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .tech-item {
    padding: 1rem;
  }
  
  .tech-item i {
    font-size: 2rem;
  }
  
  .tech-item span {
    font-size: 0.85rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .footer-text {
    font-size: 0.9rem;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.testimonial-rating {
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(102, 126, 234, 0.1);
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
}

.author-position {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

