/* Put Quick Links + Social on the same row on small screens */
@media (max-width: 576px) {
  #site-footer .row {
    display: flex;
    flex-direction: column;
  }

  /* The second and third columns side-by-side */
  #site-footer .col-md-4:nth-child(2),
  #site-footer .col-md-4:nth-child(3) {
    width: 50%;
    flex: 0 0 50%;
  }

  /* Make sure they align properly */
  #site-footer .col-md-4:nth-child(2),
  #site-footer .col-md-4:nth-child(3) {
    margin-bottom: 20px;
  }

  #site-footer .col-md-4:nth-child(3) {
    text-align: left; /* optional: remove if you want center alignment */
  }
}

@media (max-width: 576px) {
  #site-footer .border-top {
    margin-top: 0 !important;    /* remove mt-4 */
    padding-top: 0 !important;   /* remove vertical space above */
    padding-bottom: 0 !important; /* optional: shrink bottom too */
  }
}









/* MOBILE PAGINATION FIX — Only hide page-number buttons after the first 4 */
@media (max-width: 768px) {
  #product-page-list + div .page-number:nth-of-type(n+5) {
    display: none !important;
  }

  /* Allow horizontal scroll if needed */
  #product-page-list + div {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

  #product-page-list + div .page-btn {
    display: inline-block;
  }
}



/* MOBILE PAGINATION IMPROVEMENT */
@media (max-width: 768px) {
  .pagination-container,
  #product-page-list + div {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px !important;
    margin-top: 15px;
  }

  .pagination-container button,
  #product-page-list + div button {
    padding: 6px 10px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
  }

  /* Prev/Next buttons wider on mobile */
  #product-page-list + div button:first-child,
  #product-page-list + div button:last-child {
    padding: 6px 14px !important;
    font-weight: 600;
  }
}



#auto-lightbox-prev,
#auto-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.4);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 6000;

  /* 🔥 Remove all blue focus/active artifacts */
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

#auto-lightbox-prev {
  left: 20px;
}

#auto-lightbox-next {
  right: 20px;
}

#auto-lightbox-prev:hover,
#auto-lightbox-next:hover {
  background: rgba(0,0,0,0.7);
}

/* 🔥 Remove focus + active blue color completely */
#auto-lightbox-prev:focus,
#auto-lightbox-next:focus,
#auto-lightbox-prev:active,
#auto-lightbox-next:active {
  outline: none !important;
  box-shadow: none !important;
  background: rgba(0,0,0,0.4) !important;
}




/* Lightbox Overlay */
#auto-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  padding: 20px;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#auto-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

/* Lightbox Content */
#auto-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  cursor: default;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

/* Close Button */
#auto-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 6000;

  /* Remove blue highlight */
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}






/* Force 2 cards per row on extra-small screens */
@media (max-width: 360px) {
  .col-12.col-sm-6.col-lg-3 {
    flex: 0 0 50% !important;   /* 2 per row */
    max-width: 50% !important;
  }

  .product-img {
    height: 140px !important;   /* slightly smaller to fit nicely */
  }
}

/* Force 2 cards per row for small screens (375px and up) */
@media (min-width: 375px) and (max-width: 575px) {

  /* 2 cards per row */
  #product-page-list .col-12.col-sm-6.col-lg-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  /* Reduce ONLY the height of product images — safe, won't affect navbar */
  #product-page-list .product-card .product-img {
    max-height: 180px !important;
    object-fit: cover !important;
  }
}







/* Apply the new font to only this section */
.custom-order-cards {
    font-family: 'Playfair Display', serif;
}

.custom-order-cards h5 {
    font-weight: 700;
    /* bold heading */
}

.custom-order-cards p {
    font-weight: 400;
    /* normal paragraph */
}

/* 📱 Tighten spacing between nav links in collapsed menu */
@media (max-width: 768px) {
  #navbarNav .navbar-nav {
    gap: 0.1rem !important; /* reduced further */
    line-height: 1.1 !important; /* compress vertical spacing slightly */
  }
}

@media (max-width: 450px) {
  #navbarNav .navbar-nav {
    gap: 0rem !important; /* nearly stacked */
    line-height: 1 !important; /* make it tighter on ultra-small screens */
  }
}

.brand-logo {
    gap: 0.6rem !important;
    /* tighten spacing between logo and text */
}

.brand-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 2px;
    /* visually centers logo with text */
}

.brand-logo span {
    font-size: 1.1rem;
    /* slightly smaller than default */
    letter-spacing: 0.5px;
    margin-top: 3px;
    /* bring text closer to the logo vertically */
    color: #f8f9fa;
    /* elegant light tone (adjust to theme) */
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

/* Optional hover for premium feel */
.brand-logo:hover span {
    color: #ffc107;
    /* or your brand accent */
    transition: color 0.3s ease;
}

/* For small screens: make it compact */
@media (max-width: 576px) {
    .brand-logo img {
        width: 32px;
        height: 32px;
    }

    .brand-logo span {
        font-size: 0.95rem;
        margin-top: 2px;
    }
}








/* Navbar Background with Image */
#main-navbar {
    background-image: url('https://images.unsplash.com/photo-1569470451072-68314f596aec?w=600&auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    backdrop-filter: brightness(0.6);
    /* dark overlay for text readability */
    transition: background 0.5s ease;
}
/* Force brand content super close / slightly overlap */
.brand-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 0 !important;           /* remove flex gap */
  padding: 0 !important;
  margin: 0 !important;
  position: relative;           /* allow text to move over image */
}

/* Remove image spacing */
.brand-logo img {
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: middle;
  display: inline-block;
}

/* Move text slightly left over the logo */
.brand-logo span {
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
  position: relative;
  left: -10px;  /* adjust this value to make it closer/further */
  font-weight: 700;
}
/* Shift the whole brand slightly left */
#main-navbar .brand-logo {
  left: -10px; /* move entire logo+text to the left */
  position: relative; /* ensures left works */
}




/* Navbar brand styling */
#main-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #ffffff;
    /* brand text white */
}

/* Navbar links */
#main-navbar .nav-link {
    font-weight: 500;
    color: #ffffff;
    /* links white */
    transition: color 0.3s, transform 0.3s;
}

/* Hover effect for links */
#main-navbar .nav-link:hover {
    color: #ffd700;
    /* gold accent */
    transform: translateY(-3px);
    /* slight lift */
}

/* Active link */
#main-navbar .nav-link.active {
    color: #ffd700;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    #main-navbar {
        background-position: center top;
    }

    #main-navbar .nav-link {
        margin: 0.3rem 0;
    }
}
/* White border for hamburger button */
.navbar-dark .navbar-toggler {
    background-color: transparent;
    /* keep button background transparent */
    border: 2px solid #ffffff;
    /* white border */
    border-radius: 0.25rem;
    /* rounded corners */
    padding: 0.25rem 0.5rem;
    /* adjust size if needed */
}

/* White hamburger lines inside the bordered container */
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}















/* Product Page Hero Section */
.product-hero {
    background-image: url('https://images.unsplash.com/photo-1602024305864-8a1a2e5fd90d?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzN8fG1lbiUyMHN1aXRzfGVufDB8MHwwfHx8Mg%3D%3D&?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 20vh;
    position: relative;
    overflow: hidden;
}

.product-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.product-hero .container {
    z-index: 2;
}

.product-hero h1,
.product-hero p {
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Filter & Sort Bar */
#filter-sort-bar {
    background: linear-gradient(90deg, #111, #222);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(6px);
}

#filter-sort-bar input,
#filter-sort-bar select {
    border-radius: 30px;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    appearance: none;
}

/* Dropdown styling */
#filter-sort-bar select {
    background-color: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%23FFD700' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

/* Parallax Background */
.parallax-product-bg {
    background-image: url('https://images.unsplash.com/photo-1676278746071-cd54ce97bf16?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzF8fG1lbiUyMHN1aXRzfGVufDB8MHwwfHx8Mg%3D%3D&?auto=format&fit=crop&w=1600&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Product Cards */
.product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.product-img-wrapper,
.overflow-hidden.position-relative {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 0;
}

/* Product Images */
.product-img {
    height: 380px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    z-index: 1;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

/* Overlay Details */
.product-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    pointer-events: none !important;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    z-index: 5;
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
}

/* Card Body */
.card-body {
    position: relative;
    background: #fff;
    padding: 1rem;
    text-align: center;
    z-index: 10;
}

/* Hover Animations */
.product-card:hover .carousel-inner .product-img {
    transform: scale(1.08);
    transition: transform 0.6s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: scale(1.02);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* =============================================== */
/* 🔥 LIGHTBOX FIXES ADDED BELOW — DO NOT REMOVE  */
/* =============================================== */

/* Make carousel images fully clickable */
.carousel-item img,
.product-img {
    pointer-events: auto !important;
    z-index: 10 !important;
    cursor: zoom-in !important;
    position: relative;
}

/* Ensure carousel items accept clicks even during fade */
.carousel-item {
    pointer-events: auto !important;
}

/* Prevent ANY overlay or container blocking clicks */
.product-overlay,
.overflow-hidden.position-relative,
.product-img-wrapper {
    pointer-events: none !important;
}

/* Allow IMAGE clicks only (not wrapper) */
.product-img {
    pointer-events: auto !important;
}

/* Keeps carousel controls working on top */
.carousel-control-prev,
.carousel-control-next {
    pointer-events: auto !important;
}


/* Testimonials Section */
#testimonials {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1570691808221-15bd768c324b?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTMzfHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    /* parallax effect */
    background-position: center;
    background-size: cover;
    padding: 5rem 0;
    color: white;
}

/* Overlay to make text readable */
#testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* Container content on top of overlay */
#testimonials .container {
    position: relative;
    z-index: 1;
}

/* Section title styling */
#testimonials h2 {
    color: #ffd700;
    /* gold accent */
    letter-spacing: 2px;
}

/* Carousel card styling */
#testimonials .card {
    background-color: rgba(255, 255, 255, 0.1);
    /* semi-transparent */
    backdrop-filter: blur(8px);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Card hover effect */
#testimonials .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Card text styling */
#testimonials .card-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Customer name and small text */
#testimonials h6 {
    margin-top: 0.5rem;
    font-weight: 600;
}

#testimonials small {
    color: #f0e68c;
    /* light gold */
}

/* Carousel controls */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    #testimonials h2 {
        font-size: 1.8rem;
    }

    #testimonials .card {
        max-width: 90%;
        margin: auto;
    }
}

@media (max-width: 576px) {
    #testimonials {
        padding: 3rem 0;
    }

    #testimonials .card-text {
        font-size: 1rem;
    }
}







/* Custom Order Section */
#custom-order {
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Parallax Video */
.custom-parallax-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
}

/* Overlay for better readability */
#custom-order .overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Button Hover Effect */
#custom-order .btn:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #custom-order h2 {
        font-size: 1.8rem;
    }

    #custom-order p {
        font-size: 1rem;
    }
}







/* Why Choose Us Parallax Background */
.why-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1489370603040-dc6c28a1d37a?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mzd8fG1lbiUyMHN1aXRzfGVufDB8MHwwfHx8Mg%3D%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    /* Parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.6);
}

/* Overlay */
#why-choose-us .overlay {
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Hover scale effect for cards */
.hover-scale {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-scale:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #why-choose-us h2 {
        font-size: 1.8rem;
    }

    #why-choose-us p {
        font-size: 1rem;
    }
}
/* .bi {
    font-family: "bootstrap-icons" !important;
} */







/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 100;
    animation: bounce 2s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Bounce animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}














/* ⚙️ Responsive Shrink for Smaller Devices */
@media (max-width: 992px) {
    /* Tablet view */
    .product-hero h1 {
        font-size: 1.8rem;
    }
    .product-hero p {
        font-size: 0.90rem;
    }
    #filter-sort-bar input,
    #filter-sort-bar select {
        padding: 0.40rem 0.70rem;
        font-size: 0.80rem;
    }
    #filter-sort-bar button {
        padding: 0.45rem 0.9rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    /* Small tablets and large phones */
    .product-hero {
        min-height: 20vh;
        background-attachment: scroll;
    }

    .product-hero h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .product-hero p {
        font-size: 0.85rem;
        text-align: center;
    }

    #filter-sort-bar .container {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.4rem 0.6rem;
    }

    #filter-sort-bar input,
    #filter-sort-bar select {
        font-size: 0.70rem;
        padding: 0.4rem 0.7rem;
    }

    #filter-sort-bar button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    #filter-sort-bar label,
    #filter-sort-bar #priceValue {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* 📱 Mobile phones */
    .product-hero {
        min-height: 16vh;
        background-position: center;
    }

    .product-hero h1 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .product-hero p {
        font-size: 0.70rem;
        line-height: 1.3;
    }

    #filter-sort-bar {
        padding: 0.4rem;
    }

    #filter-sort-bar input,
    #filter-sort-bar select {
        width: 100%;
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        border-radius: 20px;
    }

    #filter-sort-bar button {
        width: 100%;
        padding: 0.30rem 0.6rem;
        font-size: 0.70rem;
        border-radius: 20px;
    }

    #filter-sort-bar label,
    #filter-sort-bar #priceValue {
        font-size: 0.7rem;
    }
}













/* Footer Parallax Background */
.footer-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1569470451072-68314f596aec?w=600&?auto=format&fit=crop&w=1400&q=80');
    /* replace with your choice */
    background-attachment: fixed;
    /* parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness(0.4);
    /* dim for readability */
    z-index: 1;
}

/* Footer Links */
#site-footer a {
    transition: color 0.3s;
}

#site-footer a:hover {
    color: #ffd700;
    /* gold accent on hover */
    text-decoration: underline;
}

/* Responsive spacing */
#site-footer p,
#site-footer ul li {
    font-size: 0.95rem;
}

/* Optional: smooth fade-in animation for footer */
#site-footer {
    animation: fadeInFooter 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInFooter {
    to {
        opacity: 1;
    }
}


/* Quick Links */
#site-footer ul li a {
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

#site-footer ul li a:hover {
    color: #ffd700;
    /* gold accent */
    transform: translateX(5px);
    /* slight slide effect */
}

/* Optional underline animation */
#site-footer ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffd700;
    transition: width 0.3s;
}

#site-footer ul li a:hover::after {
    width: 100%;
}
/* Social Media Icons */
#site-footer a.fs-5 i {
    transition: transform 0.3s, color 0.3s;
}

#site-footer a.fs-5:hover i {
    transform: scale(1.2);
    color: #ffd700;
    /* gold accent */
}

/* Optional: add a smooth cursor pointer for icons */
#site-footer a.fs-5 {
    cursor: pointer;
}



