.img-sider {
  width: 100% !important;
  height: 800px;
}
.img-sider img {
  width: 100% !important;
  height: 100%;
}

.insta-section {
  padding: 50px 0;
  position: relative;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.insta-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.insta-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  text-align: center;
  padding: 40px 60px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.insta-card i {
  font-size: 40px;
  background: linear-gradient(
    45deg,
    #f58529,
    #feda77,
    #dd2a7b,
    #8134af,
    #515bd4
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.insta-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.insta-card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .insta-card {
    padding: 25px 35px;
  }
  .insta-grid img {
    height: 250px;
  }
}

.blog-thumb {
  width: 100%;
  height: 400px;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
}

/* services cards */
/* Top Section */
.video-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-box:hover img {
  transform: scale(1.03);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
  font-size: 24px;
  color: #000;
}

/* Bottom slider */
.magazine-slider img {
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.magazine-slider img:hover {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .magazine-slider img {
    height: 200px;
  }
}

/* about */

.about-my-img {
  width: 100%;
  height: 600px;
}
.about-my-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galary-img {
  width: 100%;
  height: 300px;
}
.galary-img img {
  width: 100%;
  height: 100%;
}

.whats-to-top {
  position: fixed;
  left: 10px;
  bottom: 115px;
  z-index: 99;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  font-family: sans-serif;
  font-weight: normal;
  text-decoration: none;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(66, 219, 135, 0.5);
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* Optional hover effect */
.whats-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(66, 219, 135, 0.7);
}

/* Pulse animation */
@keyframes pulsing {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(66, 219, 135, 0.5);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(66, 219, 135, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(66, 219, 135, 0.5);
  }
}
