@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* fonts */

@font-face {
  font-family: Verdana;
  src: url(../fonts/Verdana.ttf);
}

@font-face {
  font-family: Kreadon;
  src: url(../fonts/KreadonVF.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: Kreadon, sans-serif;
  scroll-behavior: smooth;
}

:root {
  --black-color: #1e1c1c;
  --white-color: #f7f7f7;
}

.Kreadon {
  font-family: Kreadon, sans-serif;
}

.Verdana {
  font-family: Verdana, sans-serif;
}

img,
button,
iframe,
a {
  user-select: none;
}

.slidein {
  animation: slideAnimation 1s ease var(--slidein-delay, 0) forwards;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navUnderLine {
  position: relative;
  padding: 0 2px;
  cursor: pointer;
}

.navUnderLine::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #dd572d;
  transition: 200ms all;
}

.navUnderLine:hover::before {
  width: 100%;
}

.fadeIn {
  animation: fadeIn .8s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fastFadeIn {
  animation: fadeIn 0.5s;
}

@keyframes fastFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.myShadow {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* =========== */

.OurClientsBg {
  background: linear-gradient(rgba(0, 0, 0, 0.705), rgba(0, 0, 0, 0.672)), url(https://kit.sociolib.com/digitalize/wp-content/uploads/sites/3/2024/05/03.jpg) no-repeat center center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.LocationMapBg {
  background: linear-gradient(rgba(0, 0, 0, 0.705), rgba(0, 0, 0, 0.672)), url(/images/webphotos/IC06.webp) no-repeat center center;
}

.bgAbout {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/webphotos/IC07.webp) no-repeat center/cover ; 
}

.bgServices {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/webphotos/IC16.webp) no-repeat center center;
}

.bgBlog {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/webphotos/IC21.webp) no-repeat center center;
}

.bgPortfolio {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/webphotos/IC22.webp) no-repeat center center;
}

.bgContact {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/webphotos/IC22.webp) no-repeat center center;
}

.bgHero {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(/images/homepage/homebg.webp) no-repeat top/cover;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensures it stays above other elements */
}

/* Added responsive styles for all pages */
/* @media (max-width: 768px) {
  body {
    padding: 0 1rem;
  }

  header {
    padding: 1rem;
  }

  .itemSection {
    grid-template-columns: 1fr;
  }

  .blogSection {
    grid-template-columns: 1fr;
  }

  .imagesSection {
    columns: 1;
  }

  .flex {
    flex-direction: column;
    align-items: center;
  }

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

  .max-w-7xl, .max-w-6xl, .max-w-5xl {
    max-width: 100%;
  }

  .p-5 {
    padding: 1rem;
  }

  .py-16, .py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .h-24 {
    height: auto;
  }

  .gap-5, .gap-12, .gap-28 {
    gap: 1rem;
  }

  .text-5xl {
    font-size: 2rem;
  }

  .text-4xl {
    font-size: 1.5rem;
  }

  .text-3xl {
    font-size: 1.25rem;
  }

  .text-xl {
    font-size: 1rem;
  }

  .text-sm {
    font-size: 0.875rem;
  }
} */

/* Adjusted font size for consistency */
.text-sm {
  font-size: 0.875rem; /* Matches the font size of Privacy Policy and Our Terms */
}