html, body {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  background: linear-gradient(rgb(255, 255, 255), rgba(2, 116, 78, 0.966));
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background-color: rgb(5, 182, 176);
  border-radius: 50px;
}

.card-para-color {
  color: rgb(255, 255, 255);
}

.icon-shadow {
  box-shadow: 6px 6px 20px 0.02px rgb(0, 0, 0);
}

.tmp-btn {
  margin: auto;
}

.input-field::placeholder {
  color: white;
}

.sub-heading {
  font-size: 24px;
  color: teal;
}

/* Mobile heading */
#mobile-heading {
  position: absolute;
  top: -15%;
  left: 0;
  display: none;
}

#lets-talk-btn:hover {
  box-shadow: 6px 6px 20px 0.02px rgb(48, 48, 48);
}

@media (max-width: 990px) {
  #mobile-heading {
    display: block;
    padding-top: 50px;
  }

  #big-heading{
    display: none;
  }

  #hero-para{
    margin-top: -10%;
  }
}

/* Side social links */
#social-link-container {
  background-color: rgba(43, 42, 42, 0.144);
  padding-right: 50px;
  border: 2px solid teal;
  position: fixed;
  top: 32%;
  left: 95%;
  z-index: 200;
  border-radius: 20px;
}

.social-links {
  width: 40px;
  padding: 1% 2%;
  margin: 10px;
  text-align: center;
  border-radius: 30px;
}

.social-link-icon:hover {
  cursor: pointer;
  padding: 4%;
  width: 120px;
}

@media (max-width: 1100px) {
  #social-link-container {
    left: 93%;
  }
}

@media (max-width: 950px) {
  #social-link-container {
    left: 93%;
  }
}

@media (max-width: 750px) {
  #social-link-container {
    left: 88%;
  }
}
@media (max-width: 450px) {
  #social-link-container {
    left: 80%;
    width: 100px;
  }
}




/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Gallery container */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Gallery images */
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid white;
  border-radius: 20px;
}

/* Hover animation */
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Lightbox background */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.4s ease;
}

/* Lightbox image */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  animation: zoomIn 0.4s ease;
}

/* Show lightbox */
.lightbox:target {
  display: flex;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.7); }
  to { transform: scale(1); }
}

/* Mobile spacing */
@media (max-width: 600px) {
  .gallery {
    gap: 10px;
    padding: 15px;
  }
}