section,
.row {
  overflow-x: hidden;
}

.tech-partners {
  background-color: #f8f9fa;
  overflow: hidden;
  position: relative;
}

.scrolling-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.scrolling-wrapper:hover .scrolling-content {
  animation-play-state: paused;
}

.scrolling-content {
  display: inline-flex;
  gap: 20px;
  animation: scrollLeft 20s linear infinite;
  will-change: transform;
  min-width: 200%;
}

.tech-logo {
  height: 60px;
  transition: transform 0.3s ease;
}

.tech-logo:hover {
  transform: scale(1.2);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .responsive-text {
    text-align: left !important;
  }
}

.project-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* optional: adds darkening for better text visibility */
}

.project-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 1.2rem;
}

.project-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.project-carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.project-image {
  width: 100%;
  max-width: 480px;
  max-height: 259px;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px #4cc9f022;
  margin-bottom: 0.5rem;
  border: 2px solid #4cc9f0;
  margin-top: 0;
  background: #fff;
  object-fit: cover;
}

/* Dots inside the image */
.project-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  background-color: rgba(26, 26, 46, 0.5);
  border-radius: 50px;
  padding: 7px;
}

.project-carousel-dots .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.project-carousel-dots .dot.active {
  background-color: #ffffff;
  border: 1px solid #4cc9f0;
}

/* Arrows - show only on hover */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 46, 0.5);
  color: white;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-carousel-wrapper:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.tech-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.tech-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #4cc9f0;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 10px;
}

.tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Hover effect: Enlarge the full circle */
.tech-badge:hover .tech-icon {
  transform: scale(1.25);
}

.tech-badge span {
  margin-top: 0.5rem;
  font-weight: 500;
  color: #23234b;
  font-size: 1rem;
}

.project-review-card {
  max-width: 480px;
  width: 100%;
  background: rgba(26, 26, 46, 0.9);
  border-radius: 1rem;
  box-shadow: 5px 2px 12px #4cc9f033;
  border: 2px solid #4cc9f0;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviewer-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #4cc9f0;
  object-fit: cover;
  box-shadow: 0 2px 8px #4cc9f055;
}

.reviewer-name-title {
  font-weight: 600;
  color: #4cc9f0;
  margin-bottom: 0.3rem;
}

.review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.star-rating {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1.05rem;
  color: #fff;
  font-style: italic;
}

.project-description {
  font-size: 1.2rem;
  color: #23234b;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.features-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.1rem;
  font-size: 1.08rem;
  color: black;
}
.features-list li:before {
  content: "\f0e7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #4cc9f0;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.2rem;
}

.project-details-section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #4cc9f011, 0 2px 8px #1a1a2e11;
  padding: 2.5rem 2rem;
  margin-top: -40px;
  margin-bottom: 48px;
  width: 90%;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .project-details-section {
    padding: 2rem 1rem;
  }
  .project-title {
    font-size: 2rem;
  }
  .project-image,
  .project-review-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .project-review-card {
    flex-direction: column !important;
    text-align: center;
    padding: 1.5rem 1rem;
  }
}

.hero-btns .d-flex {
  align-items: stretch;
  gap: 18px;
}

.hero-btns .btn {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.tech-typing {
  font-family: "Poppins", "Fira Mono", "Consolas", monospace;
  letter-spacing: 1.5px;
  position: relative;
  background: linear-gradient(90deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cursor {
  display: inline-block;
  width: 1ch;
  color: #4cc9f0;
  animation: blink 0.8s steps(1) infinite;
  font-weight: 700;
  font-size: 1.1em;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Custom Get a Quote button style */
.btn-quote {
  background: linear-gradient(90deg, #4cc9f0 0%, #4cc9f0 100%);
  color: #1a1a2e;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 16px rgba(0, 230, 210, 0.12);
  transition: background 0.4s, color 0.4s, transform 0.2s;
  position: relative;
  z-index: 1;
}
.btn-quote:hover,
.btn-quote:focus {
  background: linear-gradient(90deg, #4cc9f0 0%, #00e6d2 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 32px #00e6d2, 0 2px 8px #1a1a2e;
}
/* Hero Heading and Subheading Custom Styles */
.hero-heading {
  color: #fff; /* Custom accent color */
  text-align: left;
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    text-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 16px rgba(0, 230, 210, 0.15);
}

.hero-heading:hover {
  color: #fff;
  text-shadow: 0 4px 32px #fff, 0 2px 8px;
  transform: scale(1.04) rotate(-1deg);
}

.hero-subheading {
  color: #4cc9f0; /* Warm accent color */
  text-align: left;
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    text-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 12px rgba(255, 179, 71, 0.12);
}

.hero-subheading:hover {
  color: #fff;
  text-shadow: 0 4px 32px #4cc9f0, 0 2px 8px #1a1a2e;
  transform: scale(1.04) rotate(1deg);
}
:root {
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #4cc9f0;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --success-color: #4ade80;
}

body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.4rem;
}

.gradient-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  padding: 40px;
  border-radius: 20px;
}

.floating-panel {
  background: linear-gradient(145deg, #1c1b2c #1c1b2c);
  border: 1px solid rgba(0, 255, 204, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
  animation: floaty 6s ease-in-out infinite;
}

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

.scanner-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #00ffd5, transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--dark-color) 0%,
    var(--primary-color) 100%
  );
  color: white;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.hero-projects {
  position: relative;
  background-color: #0d1117;
  color: #ffffff;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
  text-align: center;
}

.hero-projects h1 {
  font-size: 4rem;
  color: #ffffff; /* Plain white */
  font-weight: 700;
}

.hero-subtext {
  margin-top: 10px;
  font-size: 1.25rem;
  color: #a2f3ff;
  font-style: italic;
}

/* Canvas background */
#techCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
  background: linear-gradient(135deg, #0d1117 0%, #111827 100%);
}

/* .hero-content {
  z-index: 2;
  position: relative;
} */

/* Portfolio Styles */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: white;
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(67, 97, 238, 0.15);
}

.filter-btn.active {
  box-shadow: 0 0 15px rgba(67, 97, 238, 0.6);
}

.filter-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.filter-btn:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.portfolio-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(67, 97, 238, 0.1);
}

.portfolio-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(67, 97, 238, 0) 0%,
    rgba(67, 97, 238, 0) 35%,
    rgba(67, 97, 238, 0.1) 45%,
    rgba(67, 97, 238, 0) 55%,
    rgba(67, 97, 238, 0) 100%
  );
  transition: all 0.7s ease;
  opacity: 0;
  z-index: 1;
}

.portfolio-card:hover::before {
  opacity: 1;
  top: 0;
  left: 0;
  transform: rotate(0);
}

.portfolio-img-container {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.portfolio-img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(26, 26, 46, 0) 0%,
    rgba(26, 26, 46, 0.03) 50%,
    rgba(26, 26, 46, 0) 100%
  );
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-img-container::after {
  opacity: 1;
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 20px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  background: rgba(26, 26, 46, 0.95);
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover .overlay-content {
  transform: translateY(0) scale(1);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-tags span {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.portfolio-card-footer {
  padding: 1.25rem;
  background: white;
  border-top: 1px solid #f1f5f9;
}

.portfolio-card-footer h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0;
}

.category-badge {
  background: rgba(67, 97, 238, 0.1);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.category-badge::before {
  content: "010101010101";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgba(67, 97, 238, 0.2);
  font-family: monospace;
  font-size: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .category-badge::before {
  opacity: 1;
  animation: binaryScroll 3s linear infinite;
}

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

/* Animation delays */
.portfolio-card:nth-child(1) {
  transition-delay: 0.1s;
}

.portfolio-card:nth-child(2) {
  transition-delay: 0.2s;
}

.portfolio-card:nth-child(3) {
  transition-delay: 0.3s;
}

.portfolio-card:nth-child(4) {
  transition-delay: 0.4s;
}

.portfolio-card:nth-child(5) {
  transition-delay: 0.5s;
}

.portfolio-card:nth-child(6) {
  transition-delay: 0.6s;
}

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}

.ai-box {
  background-color: white;
  transition: all 0.4s ease;
  position: relative;
}

.ai-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
}

.ai-box:hover .icon-circle {
  box-shadow: 0 0 12px rgba(67, 97, 238, 0.5);
}

/* Animation Classes */
.slide-in-left,
.slide-in-right,
.slide-in-bottom {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.slide-in-bottom {
  transform: translateY(30px);
}

.appear {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* If you want the video to cover the entire hero section */
#heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tagline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.sub-tagline {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  width: 90%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::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: all 0.5s ease;
  z-index: -1;
}

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

.btn-outline-light {
  padding: 0.75rem 2rem;
  font-weight: 500;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.about-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  padding: 2rem;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.tech-logo {
  height: 60px;
  margin: 20px;
  transition: all 0.3s ease;
}

.portfolio-filter {
  margin-bottom: 30px;
}

.testimonial-card {
  border: none;
  border-radius: 12px;
  border: 1px solid rgba(67, 97, 238, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.quote-icon-top,
.quote-icon-bottom {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.quote-icon-top {
  top: 10px;
  left: 20px;
}

.quote-icon-bottom {
  bottom: 10px;
  right: 20px;
}

.client-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  z-index: 1;
  position: relative;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  position: relative;
  z-index: 1;
}

.client-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.carousel-indicators {
  position: static;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-size: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

.map-container {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.address-box {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.blog-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px 10px 0 0;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.form-control {
  height: 50px;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

textarea.form-control {
  height: auto;
}

.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-links h5 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h5:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.fade-in.appear {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30%);
  transition: all 0.6s ease-out;
}

.slide-in-left.appear {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30%);
  transition: all 0.6s ease-out;
}

.slide-in-right.appear {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .map-container {
    height: 400px !important;
    margin-bottom: 20px;
  }

  .tagline {
    font-size: 2.8rem;
  }

  .sub-tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 1rem;
    padding: 0;
  }

  .quote-icon-top,
  .quote-icon-bottom {
    font-size: 2rem;
  }

  .tagline {
    font-size: 2.2rem;
  }

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

@media (max-width: 576px) {
  .tagline {
    font-size: 1.8rem;
  }

  .hero-btns .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
