/* footer -------------------------------------------------------------------------------------*/
.main-ftr {
    background-color: #f6f3f3dc;
    width: 100%;
    padding: 3% 0% 0% 5%;
    margin-top: 30px;
}

.ftr-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    border-bottom: 1px solid rgba(0, 0, 0, 0.136);
    height: 40px;
    margin: 20px 0px;
}

.ftr-nav::-webkit-scrollbar {
    display: none;
}

.ftr-nav-m {
    margin-right: 30px;
    width: fit-content;
    opacity: .7;
    white-space: nowrap;
}

.ftr-nav-m:hover {
    opacity: 1;
    border-bottom: 2px solid rgba(0, 0, 0, 0.499);
}

.main-light {
    font-weight: 600;
}

.light {
    opacity: .7;
}

.ftr-nav-pop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    cursor: default;
}

.ftr-nav-pop > div {
    margin: 0px 10px 50x 0px;
    padding: 0px 20px 0px 0px;
    width: 250px;
}

@media (max-width:780px) {
    .ftr-nav-pop > div {
        width: 190px;
    }
}

@media (max-width:425px) {
    .ftr-nav-pop > div {
        width: 150px;
    }
}

@media (max-width:375px) {
    .ftr-nav-pop > div {
        width: 120px;
    }
}

.ftr-hr {
    margin-right: 5%;
}

.show i {
    font-size: .8rem;
    opacity: .6;
}

.show:hover {
    opacity: 1;
}

.show span:hover {
    text-decoration: underline;
}

.ftr-mdl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0px 10px 0px 0px;
}

.ftr-mdl > div {
    margin: 1% 5% 2% 0%;
    width: calc((70%) / 3);
    padding: 10px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
}

@media (max-width:780px) {
    .ftr-mdl > div {
        width: 270px;
    }
}

.ftr-mdl-cont > div > span:hover {
    text-decoration: underline;
    cursor: pointer;
}

.ftr-copy {
    margin: 20px 0px 2px 0px;
    margin-right: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.ftr-copy > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.ftr-copy a {
    color: black;
    opacity: 8;
}

.ftr-net {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 5px;
}

.ftr-net > div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 120px;
}

.social-icon img {
    width: 1.75rem;
    height: 1.75rem;
    margin: .25rem;
}

.social-icon a {
    transition: .3s ease-in-out 0s;
    opacity: .7;
}

.social-icon a:hover {
    transform: scale(1.5);
    opacity: 1;
}

.ftr-inr {
    font-size: .95rem;
    font-weight: 700;
}

.eng-in {
    cursor: pointer;
}

@media (max-width:375px) {
    .priv {
        font-size: .93rem;
    }
}

@media (max-width:925px) {
    .ftr-copy {
        flex-direction: column-reverse;
    }
}

.ftr-shriniwas {
    font-family: 'Dancing Script', cursive !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgb(11, 8, 46));
    border-top: 1px solid rgba(0, 0, 0, 0.236);
    padding: 10px 0px 0px 0px;
    margin-right: 5%;
}

.ftr-shriniwas p:hover {
    background: -webkit-linear-gradient(blue, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.ftr-shriniwas p {
    background: -webkit-linear-gradient(#ff0000, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sheck 5s infinite linear;
}

@keyframes sheck {
    0% {
        transform: scale(1);
    }

    33% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    66% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


/* ================= FOOTER SOCIAL ICON FIX ================= */

/* Base fix */
.social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon img {
  width: 22px;
  height: 22px;
  margin: 0;
}

/* Remove aggressive zoom */
.social-icon a:hover {
  transform: none;
  opacity: 1;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .ftr-net {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .ftr-net > div {
    width: auto;
  }

  .social-icon {
    justify-content: center;
    margin-top: 6px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  /* Disable hover animation on mobile */
  .social-icon a:hover {
    transform: none;
  }
}

/* ================= DESKTOP POLISH ================= */
@media (min-width: 769px) {
  .social-icon a {
    opacity: 0.75;
    transition: opacity 0.2s ease;
  }

  .social-icon a:hover {
    opacity: 1;
  }
}
@media (min-width: 769px) {
  .social-icon a {
    padding: 6px;
    border-radius: 50%;
  }

  .social-icon a:hover {
    background: rgba(0,0,0,0.05);
  }
}


/* ================= DESKTOP FOOTER COPYRIGHT POLISH ================= */
@media (min-width: 1024px) {

  .ftr-copy {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  /* LEFT SIDE: COPYRIGHT + LINKS */
  .ftr-copy > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #333;
  }

  .ftr-copy .priv a {
    font-weight: 500;
    opacity: 0.75;
    text-decoration: none;
  }

  .ftr-copy .priv a:hover {
    opacity: 1;
    text-decoration: underline;
  }

  /* RIGHT SIDE: LANG + CURRENCY + SOCIAL */
  .ftr-net {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .ftr-net > div {
    width: auto;
  }

  .eng-in,
  .ftr-inr {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    cursor: pointer;
  }

  /* SOCIAL ICONS */
  .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  .social-icon a {
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

  .social-icon a:hover {
    opacity: 1;
  }
}
/* ================= MOBILE FOOTER COPYRIGHT (REF MATCH) ================= */
@media (max-width: 768px) {

    .ftr-copy {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    .ftr-copy > div:first-child {
        justify-content: center;
        text-align: center;
        font-size: 13px;
        color: #333;
        gap: 8px;
    }
    
    .ftr-net {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    
    .ftr-net > div {
        width: auto;
    }
    
    .eng-in,
    .ftr-inr {
        font-size: 13px;
        font-weight: 500;
        opacity: 0.85;
        cursor: pointer;
    }
    .social-icon {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 0; /* Center align on mobile */    
    }
    .social-icon img {
        width: 18px;
        height: 18px;
    }
        .ftr-copy .priv a {
        font-weight: 500;
        opacity: 0.75;
        text-decoration: none;
    }
    }