:root{
    --body-bg:#fcf4e5;
    --primary-theme-color:#f5e067;
    --secondary-theme-color:#614aa9;
    --text-white:#fff;
    --text-black:#000;
    --card-bg:#faedd8;
    --card-border:#c4bfb2
}
/* Width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background:var(--primary-theme-color);
  border-radius: 10px;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-theme-color);
}


/* costom-- */
.zoom-in-out-box {
  color:#fff;
  font-size:50px;
  margin: auto;
  animation: zoom-in-zoom-out 3s infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  20% {
    transform: scale(0.1, 0.1);
  }
  60%{
    transform: scale(1, 1);
  }
  85%{
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    position: fixed !important;
    bottom: env(safe-area-inset-bottom, 24px);
    z-index: 9999;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
.whatsapp-float {
    right: env(safe-area-inset-right, 25px);
    background-color: #25D366;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    bottom: 80px;
    right: 10px;
}

/* Instagram */
.instagram-float {
    left: env(safe-area-inset-left, 25px);
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%
    );
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 55%;
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.45);
    bottom: 80px;
    left: 10px;
}

/* Floating animation */
.float-bob-y {
    animation: floatBobY 2.5s ease-in-out infinite;
}

@keyframes floatBobY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {
   

    .whatsapp-float {
        right: 14px;
        background-size: 58%;
    }

    .instagram-float {
        left: 14px;
        background-size: 55%;
    }
}

/* ✅ VERY SMALL PHONES */
@media (max-width: 380px) {
    .float-btn {
        width: 48px;
        height: 48px;
        bottom: 333px;
    }
}
@media (max-width: 768px) {
.header-top #desktop_logo img {
    max-width: 90px;
}
.ishiservicesblock {
        padding: 0 !important;
}
}


