/* =======================
   General Reset & Base
========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h2{text-align: center;}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1rem;
  position: relative;
}

.navbar .logo img {
  height: 40px;
  object-fit: contain;
}

.navbar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, orange, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
  color: #007aff;
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: row;
    align-items: center;
  }

  .navbar .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    margin: auto;
    padding-top: 1%;
    text-decoration: underline;
  }

  .navbar-title {
    position: static;
    transform: none;
    margin-top: 1rem;
    margin: auto;
  }

.custom-slider {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  transition: transform 0.8s ease-in-out;
  position: relative;
  min-height: 300px;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
  flex-wrap: nowrap;
}

.slider-item {
  flex: 0 0 90%; /* Make it flexible for mobile */
  max-width: 90vw;
  height: auto;
  filter: blur(4px);
  opacity: 0.5;
  transition: all 0.5s ease, transform 0.8s ease-in-out;
  transform: scale(0.9) translateX(0);
  position: relative;
}
.slider-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  max-width: 100%;
}


}

/* Slideshow */
.slideshow-section {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.custom-slider {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  transition: transform 0.8s ease-in-out;
  position: relative;
  min-height: 300px;
}

.slider-item {
  flex: 0 0 380px;
  max-height: 80vh;
  filter: blur(4px);
  opacity: 0.5;
  transition: all 0.5s ease, transform 0.8s ease-in-out;
  transform: scale(0.9) translateX(0);
  position: relative;
}

.slider-item.active {
  filter: none;
  opacity: 1;
  transform: scale(1.05) translateX(0);
  z-index: 10;
}

.slider-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.8s ease-in-out;
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(5%) scale(1.05);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1.05);
    opacity: 1;
  }
}

.slider-item.active {
  animation: slideInFromRight 1s ease-out;
}

/* About */
.about-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111827;
  text-decoration: underline;
}

.about-text p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #111827;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.about-text .cta-button:hover {
  background-color: #4b5563;
}

.about-image {
  flex: 1 1 300px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text .cta-button {
    margin-top: 1rem;
  }
}

/* Carousel */
.services-carousel {
  padding: 4rem 1rem;
  background-color: #f3f4f6;
  text-align: center;
}

.services-carousel h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111827;
  text-decoration: underline;
}

.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 200px;
  height: 240px;
  border-radius: 0.75rem;
  position: relative;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.carousel-item:hover {
  transform: scale(1.03);
}

.carousel-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.carousel-item span {
  position: relative;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.85);
  color: #111827;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin: 1rem auto;
  border-radius: 0.5rem;
  max-width: 80%;
  text-align: center;
}

/* Popular Services */
.popular-services {
  padding: 4rem 1rem;
  text-align: center;
}

.popular-services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-decoration: underline;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.service-card p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* We are located section */
/* =======================
   General Reset & Base
========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1rem;
  position: relative;
}

.navbar .logo img {
  height: 40px;
  object-fit: contain;
}

.navbar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, orange, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
  color: #007aff;
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: row;
    align-items: center;
  }

  .navbar .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    margin: auto;
    padding-top: 1%;
    text-decoration: underline;
  }

  .navbar-title {
    position: static;
    transform: none;
    margin-top: 1rem;
    margin: auto;
  }
}

/* Carousel */
.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 200px;
  scroll-snap-align: start;
  height: 240px;
  border-radius: 0.75rem;
  position: relative;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.carousel-item:hover {
  transform: scale(1.03);
}

.carousel-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.carousel-item span {
  position: relative;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.85);
  color: #111827;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin: 1rem auto;
  border-radius: 0.5rem;
  max-width: 80%;
  text-align: center;
}

#chartdiv {
  width: 100%;
  height: 400px;
  max-width: 100%;
  margin: 0 auto;
}

.flags-slider {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.flags-slider::-webkit-scrollbar {
  display: none;
}

.flags-slider img {
  height: 50px;
  border-radius: 0.375rem;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.flags-slider img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #chartdiv {
    height: 300px;
  }

  .flags-slider img {
    height: 40px;
  }
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 1rem 0.75rem; /* Reduced vertical padding */
  text-align: center;
  display: flex;
}

.footer-top p {
  font-size: 0.95rem; /* Slightly smaller font */
  margin-bottom: 0.5rem;
}

.footer .cta-button {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.35rem 0.75rem;
  background-color: #2563eb;
  color: white;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.footer .cta-button:hover {
  background-color: #1d4ed8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* Less space between items */
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

.footer-bottom p {
  margin: 0;
  color: #d1d5db;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
}
.popular-services {
  margin-top: 2rem;
}

.popular-services h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
 
}

.service-cards .card {
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 300px;
  flex: 1;
  text-align: center;
}

.service-cards .card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.service-cards .card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2563eb;
}

.service-cards .card p {
  color: #4b5563;
  font-size: 0.95rem;
}
.page-title {
  text-align: center;
  margin-top: 2rem;
  font-size: 2.5rem;
  color: #111827;
  text-decoration: underline;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.service-link {
  text-decoration: none;
  color: inherit;
}

.service-card {
  width: 280px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.service-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.service-card p {
  font-size: 0.95rem;
  color: #4b5563;
}
/* =======================
   General Reset & Base
========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
}

h2 {
  text-align: center;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1rem;
  position: relative;
}

.navbar .logo img {
  height: 40px;
  object-fit: contain;
}

.navbar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, orange, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
  color: #007aff;
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: center;
  }

  .navbar .nav-links {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .navbar-title {
    position: static;
    transform: none;
    margin-top: 1rem;
  }
}

/* Popular Services */
.popular-services {
  margin-top: 2rem;
  padding: 2rem 1rem;
  text-align: center;
}

.popular-services h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
  text-decoration: underline;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-cards .card {
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 30%;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.service-cards .card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.service-cards .card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2563eb;
}

.service-cards .card p {
  color: #4b5563;
  font-size: 0.95rem;
}

/* Services Grid (used in category pages) */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 1rem;
}

.service-link {
  text-decoration: none;
  color: inherit;
}

.service-card {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.service-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.service-card p {
  font-size: 0.95rem;
  color: #4b5563;
}

.page-title {
  text-align: center;
  margin-top: 2rem;
  font-size: 2.5rem;
  color: #111827;
  text-decoration: underline;
}

/* Global Responsive Tweaks */
@media (max-width: 1024px) {
  .service-cards .card {
    width: 45%;
  }
  .navbar-title {
    font-size: 1.25rem;
  }
  .page-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .service-cards .card {
    width: 100%;
  }

  .services {
    padding: 1rem;
  }

  .popular-services h2,
  .page-title {
    font-size: 1.75rem;
  }

  .container {
    padding: 0.75rem;
  }

  .service-card {
    padding: 0.75rem;
  }

  .service-card img {
    height: 150px;
  }

  .navbar .nav-links li a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .navbar-title {
    font-size: 1rem;
  }

  .service-card h2,
  .service-cards .card h3 {
    font-size: 1rem;
  }

  .service-card p,
  .service-cards .card p {
    font-size: 0.85rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0.5rem;
  }
}
