:root {
  /* Main colors */
  --blue-primary: #1e40af;
  --blue-light: #3b82f6;
  --blue-dark: #0f172a;
  --blue-gradient: linear-gradient(135deg, #1e40af, #0f172a);
  --blue-glow: rgba(59, 130, 246, 0.3);

  --yellow-primary: #fbbf24;
  --yellow-light: #fcd34d;
  --yellow-dark: #f59e0b;
  --yellow-gradient: linear-gradient(135deg, #fcd34d, #f59e0b);
  --yellow-glow: rgba(251, 191, 36, 0.3);

  /* Dark theme UI colors */
  --background: #0f172a;
  --card-bg: #1e293b;
  --card-bg-lighter: #334155;
  --card-bg-hover: #2c3e50;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(251, 191, 36, 0.3);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 var(--blue-glow); }
  70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.appear {
  animation: fadeIn var(--transition-normal) forwards;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-md);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Ensures left alignment */
  margin-right: auto; /* Pushes other elements to the right */
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
}

.quick-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: rgba(30, 64, 175, 0.5);
  backdrop-filter: blur(5px);
  padding: var(--space-sm) var(--space-md);
  border-radius: 30px;
  color: var(--yellow-light);
  font-weight: 500;
  font-size: 0.875rem;
  box-shadow: 0 0 20px var(--blue-glow);
  animation: pulseGlow 2s infinite;
}

.quick-badge .material-symbols-outlined {
  font-size: 18px;
}

/* Hero Section with Video Background */
.hero {
  position: relative;
  min-height: 85vh; /* Taller on mobile for vertical video */
  display: flex;
  align-items: center;
  padding: var(--space-xl);
  overflow: hidden; /* Prevent video from creating scrollbars */
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover; /* Cover container while maintaining aspect ratio */
  object-position: center; /* Center the video */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
  animation: fadeIn var(--transition-slow);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Improve text readability over video */
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero h1 .accent {
  color: var(--yellow-primary);
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background-color: var(--blue-primary);
  color: white;
  border: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 0 10px var(--blue-glow);
}

.btn-primary:hover {
  background-color: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--blue-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background-color: transparent;
  color: var(--yellow-primary);
  border: 2px solid var(--yellow-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background-color: rgba(251, 191, 36, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--yellow-glow);
}

/* Stats Section */
.quick-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: var(--space-xl);
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--card-bg-lighter);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-item .material-symbols-outlined {
  font-size: 2rem;
  color: var(--yellow-primary);
}

.stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Info Cards */
.info-cards {
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.card {
  background-color: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  opacity: 0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--blue-primary);
  color: white;
}

.card-header .material-symbols-outlined {
  font-size: 1.5rem;
}

.card-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.card-body {
  padding: var(--space-lg);
  color: var(--text-primary);
}

.card-body p {
  margin-bottom: var(--space-md);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--yellow-primary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.btn-link:hover {
  color: var(--yellow-light);
  transform: translateX(3px);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: var(--text-secondary);
}

.hours-row span:last-child {
  color: var(--yellow-light);
  font-weight: 500;
}

/* Section Intros */
.section-intro {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--yellow-primary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--blue-light);
  border-radius: 3px;
}

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

/* Services Section */
.services-section {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--blue-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--border-accent);
}

.service-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--card-bg-lighter);
  border-bottom: 1px solid var(--border);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-gradient);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--blue-glow);
}

.service-icon .material-symbols-outlined {
  font-size: 28px;
  color: white;
}

.service-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--yellow-primary);
}

.service-content {
  padding: var(--space-lg);
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.service-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li span:first-child {
  color: var(--text-secondary);
}

.service-list li span:last-child {
  color: var(--yellow-light);
  font-weight: 600;
}

/* Service Notes */
.service-notes {
  background-color: rgba(251, 191, 36, 0.1);
  border-radius: 8px;
  padding: var(--space-md);
  margin-top: var(--space-md);
  border-left: 3px solid var(--yellow-primary);
}

.service-notes p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.service-notes p:last-child {
  margin-bottom: 0;
}

/* Process Section */
.process-section {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 3px;
  background-color: var(--blue-primary);
  opacity: 0.5;
}

.process-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: var(--space-2xl);
  opacity: 0;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  position: absolute;
  left: 0;
  top: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-gradient);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue-glow);
  z-index: 2;
}

.process-icon {
  margin-bottom: var(--space-sm);
}

.process-icon .material-symbols-outlined {
  font-size: 30px;
  color: var(--yellow-primary);
}

.process-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.process-content p {
  color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--blue-dark);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition-normal);
  opacity: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-primary);
  opacity: 0.2;
}

.testimonial-rating {
  display: flex;
  margin-bottom: var(--space-md);
}

.testimonial-rating .material-symbols-outlined {
  color: var(--yellow-primary);
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--blue-light);
}

/* About Section */
.about-section {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--card-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
}

.about-text {
  color: var(--text-secondary);
}

.about-text p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-primary);
}

.feature-item .material-symbols-outlined {
  color: var(--yellow-primary);
  font-size: 1.25rem;
}

/* About Video */
.about-video {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 1/1; /* Square aspect ratio */
}

.about-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* FAQ Section */
.faq-section {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--blue-dark);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  opacity: 0;
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  cursor: pointer;
  background-color: var(--card-bg-lighter);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-question .material-symbols-outlined {
  color: var(--blue-light);
  transition: transform var(--transition-fast);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: var(--space-lg);
  max-height: 300px;
}

.faq-item.active .faq-question {
  border-bottom: 1px solid var(--border);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: var(--space-2xl) var(--space-md);
  background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('assets/image1.jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

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

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow-primary);
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* Footer */
.site-footer {
  background-color: var(--card-bg);
  color: var(--text-secondary);
  padding-top: var(--space-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left align in footer */
  gap: var(--space-sm);
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer-links h3,
.footer-contact h3 {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-contact p {
  margin-bottom: var(--space-sm);
}

.footer-hours {
  margin-top: var(--space-md);
  font-size: 0.875rem;
}

.footer-bottom {
  text-align: center;
  padding: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Floating Buttons */
.back-to-top, 
.floating-call {
  position: fixed;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-normal);
  z-index: 100;
}

.back-to-top {
  right: var(--space-md);
  bottom: var(--space-md);
  background: var(--yellow-gradient);
  color: var(--blue-dark);
}

.floating-call {
  left: var(--space-md);
  bottom: var(--space-md);
  background: var(--blue-gradient);
  color: white;
}

.back-to-top.visible,
.floating-call.visible {
  opacity: 1;
  transform: scale(1);
}

.back-to-top:hover,
.floating-call:hover {
  transform: scale(1.1);
}

/* Video Play Button */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.video-play-button:hover {
  background: rgba(0,0,0,0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button .material-symbols-outlined {
  font-size: 48px;
  color: white;
}

/* Material Icons Custom Styling */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
  font-size: 24px;
}

/* Animation-related classes */
.service-card,
.process-step,
.testimonial-card,
.about-content,
.faq-item {
  transition: transform var(--transition-normal), opacity var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

/* Mobile-first styles for video (vertical video works well here) */
@media (max-width: 768px) {
  .hero {
      padding: var(--space-lg) var(--space-md);
      align-items: flex-end; /* Position content near bottom on mobile */
      min-height: 92vh; /* More screen space for vertical video */
  }

  .hero-video {
      /* For vertical video on mobile, we want to maintain 9:16 ratio */
      width: 100%; 
      height: 100%;
      object-fit: cover;
  }

  .hero-content {
      margin-bottom: var(--space-xl); /* Add space from bottom */
  }
}

/* Responsive adjustments */
@media (min-width: 640px) {
  .hero h1 {
      font-size: 3rem;
  }

  .quick-stats {
      grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .site-header {
      padding: var(--space-md) var(--space-xl);
  }

  .nav-links {
      display: flex;
      gap: var(--space-xl);
  }

  .nav-links a {
      color: var(--text-secondary);
      font-weight: 500;
      transition: color var(--transition-fast);
  }

  .nav-links a:hover {
      color: var(--yellow-primary);
  }

  .logo img {
      height: 50px;
  }

  .hero {
      min-height: 70vh; /* Not as tall on desktop */
  }

  .hero-video {
      /* On desktop, center the vertical video and zoom to fill width */
      width: 100%;
      height: auto;
      min-height: 100%;
      object-position: center 25%; /* Favor the top portion of the video */
  }

  .video-overlay {
      /* Stronger overlay on desktop to handle video scaling */
      background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75));
  }

  .hero-content {
      margin-left: var(--space-xl); /* More margin on left for desktop */
  }

  .info-cards {
      grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
      left: 50%;
      transform: translateX(-50%);
  }

  .process-step {
      padding: 0;
      padding-left: 50%;
      text-align: left;
  }

  .process-step:nth-child(even) {
      padding-left: 0;
      padding-right: 50%;
      text-align: right;
  }

  .process-number {
      left: 50%;
      top: 0;
      transform: translateX(-50%);
  }

  .testimonials-carousel {
      grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
      grid-template-columns: 1fr 1fr;
  }

  .footer-content {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .logo img {
      height: 60px; /* Larger on desktop */
  }

  .quick-stats {
      grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
      grid-template-columns: repeat(4, 1fr);
  }

  .about-features {
      grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-carousel {
      grid-template-columns: repeat(3, 1fr);
  }

  .footer-logo img {
      height: 55px;
  }
}