/* Reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;

}

/* Slideshow container */
.slideshow {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 20s infinite;
}

/* Images */
.slide1 { background-image: url("./pexels-cottonbro-4123762.jpg"); animation-delay: 0s; }
.slide2 { background-image: url("./pexels-george-milton-7014397.jpg"); animation-delay: 5s; }
.slide3 { background-image: url("./pexels-tima-miroshnichenko-9574509.jpg"); animation-delay: 10s; }
.slide4 { background-image: url("./pexels-cottonbro-4123762.jpg"); animation-delay: 15s; }

/* Fade Animation */
@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  25% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.793), rgba(0,0,0,0.4));
  z-index: -1;
}

/* Content Container */
.content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Glassmorphism Card */
.cardo{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 70px 80px;      /* Increased size */
  max-width: 800px;        /* Wider card */
  animation: fadeIn 2s ease forwards;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}


    .servicecontent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
    text-align: center;
}

.service-heading {
    font-size: 60px;
    margin-bottom: 100px;
}

.offer {
    padding: 70px 0px;
    background-color: var(--bgcolor);
}

.offercard {

    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
}

.offercard:hover {

    background: var(--maincolor);

}

.offercardfour{
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 100)), url(../images/webimages/copy-machine-near-me.jpg);
    background-size: cover;
}
.offercardone {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 100)), url(../images/webimages/bul_printing.jpeg);
    background-size: cover;
}

.offercardtwo {

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 100)), url(../images/webimages/main.jpeg);
    background-size: cover;
}

.offercardthree{
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 100)), url(../images/webimages/rental.webp);
background-size: cover;
}

.offercard>h5 {
    color: white;
    font-size: 30px;
    text-align: center;
}

.mybtn {
    text-decoration: none;
    background-color: var(--bgcolor);
    padding: 14px 20px;
    border-radius: 5px;
    color: var(--maincolor);
    box-shadow: inset 0px 0px 0px var(--maincolor);
    transition: .5s ease;
}
.mybtn {
    text-decoration: none;
    background-color: var(--bgcolor);
    padding: 14px 20px;
    border-radius: 5px;
    color: var(--maincolor);
    box-shadow: inset 0px 0px 0px var(--maincolor);
    transition: .5s ease;
}

.mybtn:hover {
    box-shadow: inset 0px -100px 0px var(--maincolor);
    color: white;
}

footer {
    padding: 100px 0px;
    background-color: var(--maincolor);
}

.linksbar>A {
    text-decoration: none;
    color: rgb(169, 168, 168);
}

.linksbar>a:hover {
    color: var(--bgcolor);
}

/* scrolltop  */
#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: var(--bgcolor);
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
}


#myBtn:hover {
    background-color: #555;
    /* Add a dark-grey background on hover */
}


    h1 {
      font-size: 2.5em;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 30px;
    }

    .card {
      width: 260px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 20px;
      background-color: white;
      text-align: center;
    }

    .card img {
      width: 100%;
      height: auto;
      margin-bottom: 15px;
    }

    .card h3 {
      font-size: 1.2em;
      margin-bottom: 10px;
      color: #333;
    }

    .card p {
      font-size: 0.9em;
      color: #555;
    }

    .btn {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 15px;
      background-color: #ffc107;
      color: #000;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
    }

    .inquiry-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #000;
      color: white;
    }

    .inquiry-card img {
      width: 80px;
      margin-bottom: 10px;
    }

    .inquiry-card p {
      color: #ccc;
    }

/* Heading */
.heading {
  font-size: 4rem;         /* Bigger heading */
  font-weight: 900;
  color: #ffcc00;
  margin-bottom: 30px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDown 1.6s ease forwards;
  transition: all 1s ease;
}
.heading:hover {
  font-size: 4.1rem;         /* Bigger heading */
  font-weight: 900;
  color: #ffcc00;
  margin-bottom: 30px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDown 1.6s ease forwards;
}

/* Subheading */
.card p {
  font-size: 1.6rem;       /* Bigger text */
  color: #f2f2f2;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 2s ease forwards;
}

/* Button */
.btn {
  display: inline-block;
  padding: 18px 42px;      /* Larger button */
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: #1f1f1f;
  background: #ffcc00;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeUp 2.5s ease forwards;
  transition: all 0.6s ease;
}

.btn:hover {
  background: #232323;
  color: #ffcc00;
  transform: scale(2) translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.btn:active {
  transform: scale(0.98);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideDown {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .heading { font-size: 2.4rem; }
  .card p { font-size: 1.1rem; }
  .card { padding: 40px 25px; max-width: 95%; }
  .btn { font-size: 1rem; padding: 14px 28px; }
}
.servicecard{
  background-color:white; border-radius: 20px;
  width: 100%;
  height: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.service-heading{
  color: #ffc107;
}
.footer {
  background-color: #1a1a1a;
  padding: 60px 80px;
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section h3 {
  color: #ffc400;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #bfbfbf;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffc400;
}

.footer-section h2 {
  color: #ffc400;
  margin: 20px 0 10px;
}

.btns {
  display: inline-block;
  background-color: #ffc400;
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.btns:hover {
  background-color: #ffda4d;
}

.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.scroll-up a {
  display: inline-block;
  background-color: #ffc400;
  color: #000;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
}

.scroll-up a:hover {
  background-color: #ffda4d;
}