:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #124265;
  --accent-color: #2487ce;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
:root {
  --nav-color: #124265;
  --nav-hover-color: #2487ce;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #124265;
  --nav-dropdown-hover-color: #2487ce;
}

.light-background {
  --background-color: #f6fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #469fdf;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
   p{
      font-size: 15px !important;
    }
   ul li{
      font-size: 15px !important;
    }

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}






/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/* Fixed Call Button */
.callNowpopupBnt {
  position: fixed;
  top: 70%;
  right: 12px;
  display: flex;
  align-items: center;
  z-index: 99;
}

.phone-call {
  position: relative;
}

.phone-call::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 65px;
  height: 65px;
  opacity: 1;
  animation: pulse 1.8s ease-out infinite;
  border-radius: 50px;
  border: 1px solid #ffc107;
}

.img_call {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  line-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trin-trin {
  animation: trin 1.5s linear infinite;
}

@keyframes trin {

  0%,
  20%,
  32%,
  44%,
  56%,
  68%,
  80%,
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }

  23%,
  35%,
  47%,
  59%,
  71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  26%,
  38%,
  50%,
  62%,
  74% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Footer  */
.footer-top-img {
  background-image: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 70%)), url(../img/geekcare/footer-top.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  background-attachment: fixed;
  border-bottom: 1px solid #fff;
}

.footer-top-img h3 {
  font-size: 35px;
  text-align: start;
  font-weight: 600;
  color: #ffc107;
}

.call-btnn a {
  color: #000 !important;
  background: #ffc107;
  display: inline;
  padding: 15px 20px 15px 20px;
  border-radius: 8px;
}

.footer-secc {
  background: #363636;
  border-bottom: 1px solid #5c5959;
}

.service-card {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        transition: all 0.3s ease;
        background: white;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .service-card:hover {
        border-color: #ffc107;
        transform: translateY(-5px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      }

      .service-card img {
        height: 50px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
      }

      .service-card:hover img {
        transform: scale(1.05);
      }
      
      .cta {
        background-image: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 70%)), url(../img/geekcare/cta-sec.jpg);
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
      }
      
      /*====================
             Fixed Call Button 
          ===========================*/
      
      .callStringNew {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  background-color: #ffc107 !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.callStringNew.footerNumShow {
  display: flex;
}

.callStringNew .rightCall {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding-right: 7px;
  padding-left: 47px;
}

.callStringNew .fulclk {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.callStringNew a {
  padding-top: 2px;
  color: #fff;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  display: block;
  padding-bottom: 1px;
  line-height: 10px;
  position: relative;
  top: -1px;
}

        .ringing-icon {
  animation: ring 1s infinite;
  transform-origin: center;
  display: inline-block;
}

@keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(-5deg); }
  70% { transform: rotate(2deg); }
  80% { transform: rotate(-2deg); }
  90% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}














