/********** Template CSS **********/
:root {
    --primary: #b1ccff;   /* Baby Pink */
    --secondary: silver; /* Firebrick Red */
    --light: rgba(255, 255, 255, 0.75);     /* White */
    --dark: rgba(0, 0, 0, 0.51);      /* Dark Red */
}

.brand-name {
    padding-top: 10px;
      font-family: "Cinzel Decorative", serif;
      font-weight: 500;
      font-style: normal;
    font-size: 30px;
    color: #ffffff;
}


/*.footer-brand-name{*/
/*      font-weight: 800;*/
/*      font-style: normal;*/
/*    font-size: 50px;*/
/*    color: #c0c0c0;*/
/*}*/

.fab-icon{
    color: #b1ccff;
}
.fab-icon:hover{
    color: silver;
}

.hash-name{
    color:#b1ccff;
}
.hash-name1{
    color:silver;
}
.tag-line{
    color:silver;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/***/
/* Core transparent-to-colored nav */
.custom-navbar {
  background-color: transparent;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease-in-out;
  border-radius: 60px;
  margin: 20px auto;
  width: 90%;
  max-width: 1100px;
  box-shadow: none;
  padding: 10px 30px;
  z-index: 999;
}

/* On scroll, add semi-transparent black */
.custom-navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Rounded corners on all sizes */
@media (max-width: 991.98px) {
  .custom-navbar {
    width: 95%;
    border-radius: 70px;
    padding: 10px 20px;
  }
}

/* Navbar links */
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 16px;
  color: #fff !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: silver !important;
}

/* Hamburger icon override (Bootstrap uses background image) */
.custom-toggler .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='%23f06292' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Remove unwanted box outline */
.navbar-toggler:focus {
  box-shadow: none;
}

/* Phone icon color */
/*.call-icon {*/
/*  color: #f06292;*/
/*}*/

/* Custom animated hamburger in whitesmoke */
.animated-icon {
  width: 30px;
  height: 22px;
  position: relative;
  margin-top: 4px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

.animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: whitesmoke; /* You can change to #f5f5f5 or #eeeeee */
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.animated-icon span:nth-child(1) {
  top: 0px;
}

.animated-icon span:nth-child(2) {
  top: 9px;
}

.animated-icon span:nth-child(3) {
  top: 18px;
}

/* Animation on toggle */
.custom-toggler.collapsed .animated-icon span:nth-child(1) {
  top: 0px;
  transform: rotate(0deg);
}

.custom-toggler.collapsed .animated-icon span:nth-child(2) {
  top: 9px;
  opacity: 1;
  transform: rotate(0deg);
}

.custom-toggler.collapsed .animated-icon span:nth-child(3) {
  top: 18px;
  transform: rotate(0deg);
}

.custom-toggler:not(.collapsed) .animated-icon span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.custom-toggler:not(.collapsed) .animated-icon span:nth-child(2) {
  opacity: 0;
}

.custom-toggler:not(.collapsed) .animated-icon span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}



/*** Navbar ***/
/* Custom transparent black background */
.bg-transparent-dark {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

/* Ensure collapsed menu has same look */
.navbar-collapse,
.navbar .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.6) !important;
    border-radius: 80px;
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        /*border-top: 1px solid rgba(255, 255, 255, .3);*/
        /*background: var(--dark);*/
;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* On scroll: transparent background */
.navbar-collapse.menu-transparent,
.navbar .dropdown-menu.menu-transparent {
    background-color: rgba(0, 0, 0, 0) !important;
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 650px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: linear-gradient(45deg, #b1ccff 0%, silver 100%);
    /*border: 25px solid var(--light);*/
    border-radius: 6px;
    z-index: -1;
}
/*** services ***/
.service-icon {
    background: #b1ccff;
}

/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--primary) !important;
}

.product-item:hover * {
    color: var(--light);
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}
.team-social a {
    color: #673e00;
    margin-right: 10px; /* space between icons */
    font-size: 18px; /* optional: adjust icon size */
    transition: color 0.3s ease;
    text-decoration: none; /* removes underline */
}

.team-social a:last-child {
    margin-right: 0; /* removes margin after last icon */
}

.team-social a:hover {
    color: #000; /* optional: darker color on hover */
}
/****/
/* Team slide styling */
.team-swiper .swiper-slide.team-item {
  background-color: rgba(255, 192, 203, 0.3);
  /*border-radius: 10px;*/
  text-align: center;
  overflow: hidden;
  width: 200px; /* Shrink width */
  padding: 5px; /* Optional: reduce internal spacing */
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}


.team-swiper .swiper-slide.team-item:hover {
  transform: scale(1.03);
  /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);*/
}

/* Make images responsive inside slides */
.team-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Custom arrows styling */
/* Updated Arrow Styling */
.custom-arrow {
  color: white;
  font-size: 22px; /* Icon size */
  width: 50px;
  height: 50px;
  background: rgb(192, 192, 192); /* soft pink transparent */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgb(177, 204, 255);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.custom-arrow::after {
  font-size: 20px;
  color: white;
}


/* Position arrows (swiper gives classes) */
.team-swiper .swiper-button-prev {
  left: 10px;
}

.team-swiper .swiper-button-next {
  right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-arrow {
    width: 40px;
    height: 40px;
  }
  .custom-arrow:hover {
    transform: scale(1.2);
  }
  .team-swiper .swiper-slide.team-item {
    width: 180px;
  }
}


/*** Testimonial ***/
.bg-soft-pink {
    background-color: rgba(177, 204, 255, 0.4) !important; /* soft warm yellow */
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}

/*** back to top ***/
.btn-top {
  background: #b1ccff; /* your existing pink */
  border: 2px solid silver; /* added brown border */
  color: white;
  transition: all 0.3s ease;
}

.btn-top:hover {
  background: silver;      /* invert on hover for a nice effect */
  border-color: #b1ccff;  /* optional pink border on hover */
  color: #fff;
}

.back-to-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  width: 50px;         /* same as .btn-lg-square size */
  height: 50px;
  text-align: center;
  line-height: 46px;   /* slightly less than height to center the arrow */
}


/*** Footer ***/
.office-div{
    color: #949494;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: linear-gradient(45deg, #b1ccff 0%, silver 100%)
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

.navbar-logo {
  height: 60px;
  width: 60px;
    position: relative;
  top: 8px; /* tweak this up or down */
  display: block;
  transform: scale(1.3); /* visually larger */
  object-fit: contain;
  vertical-align: middle;
}


/* --- Gallery Layout --- */
.photo-gallery-wrapper.small-gallery {
  position: relative;
  overflow: hidden;
  /*width: 100%;*/
  max-height: 250px; /* make it compact like footer */
}

.photo-gallery-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
    /*width: 100%;*/
}

.photo-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

/* --- Custom Pink Arrows --- */
.custom-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  color: white;
  font-size: 16px;
  width: 35px;
  height: 35px;
  background: rgba(255, 192, 203, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 192, 203, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 5;
}
.custom-arrow:hover {
  transform: translateY(-50%) scale(1.15);
}
.custom-arrow.left { left: 8px; }
.custom-arrow.right { right: 8px; }

.photo-gallery-scroll::-webkit-scrollbar {
  display: none;
}

/* --- Modal --- */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.image-modal img {
  width: 90%;
  max-width: 600px;
  height: auto;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 192, 203, 0.5);
  object-fit: contain;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.close-modal:hover {
  color: rgba(255, 192, 203, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .photo-gallery-wrapper.small-gallery {
    max-height: 200px;
  }
  .custom-arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .image-modal img {
    max-width: 95%;
    max-height: 80vh;
  }
}
.image-modal {
  display: none;
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.0);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: background-color 0.4s ease, opacity 0.4s ease;
}

/* Active (visible) state */
.image-modal.show {
  display: flex;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 1;
}

/* Image animation */
.image-modal img {
  width: 90%;
  max-width: 600px;
  height: auto;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 192, 203, 0.5);
  object-fit: contain;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* When modal is visible */
.image-modal.show img {
  transform: scale(1);
  opacity: 1;
}

/* When closing (added via JS) */
.image-modal.hide img {
  transform: scale(0.7);
  opacity: 0;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100000;
}
.close-modal:hover {
  color: rgba(255, 192, 203, 0.8);
}


/* Wrapper */
.scroll-wrapper {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

/* Horizontal row */
.movie-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}
.movie-row::-webkit-scrollbar { display: none; }

/* Movie size */
.movie-item {
    width: 140px;
    flex-shrink: 0;
}
.movie-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 6px;
}


/* MOBILE FIX */
@media (max-width: 600px) {
    .scroll-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .movie-item {
        width: 120px;
    }
    .movie-item img {
        height: 170px;
    }
}


/* Modal Background */
.image-modal {
    display: none;
    /*position: fixed;*/
    z-index: 2000;
    /*left: 0;*/
    /*top: 0;*/
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    /*justify-content: center;*/
    /*align-items: center;*/
    padding: 20px;
}

/* Modal Inner Wrapper */
.modal-inner {
    /*text-align: center;*/
    max-width: 90%;
}

/* Image */
.modal-content {
    max-width: 100%;
    border-radius: 8px;
}


/* Name */
#modalName {
    color: whitesmoke;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Comment */
#modalComment {
    color: antiquewhite;
    font-size: 15px;
    margin: 0;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}


/* Wrapper to position arrows */
.scroll-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

/* The horizontal scroll container */
.scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.scroll-container::-webkit-scrollbar {
    display: none; /* hide scrollbar like Netflix */
}

/* Each card */
.scroll-card {
    min-width: 250px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
    transition: transform .3s;
}

.scroll-card:hover {
    transform: scale(1.05);
}

/* Scroll arrows */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scroll-btn:hover {
    background: rgba(0,0,0,0.6);
}

.left-btn {
    left: -5px;
}

.right-btn {
    right: -5px;
}

/* Text styling */
.team-text {
    text-align: center;
    padding: 15px;
}
.scroll-card {
    width: 220px;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.scroll-card img {
    width: 100%;
    height: 75%;   /* Leave space for text */
    object-fit: cover;
}

.scroll-card h5 {
    text-align: center;
    padding: 10px;
    margin: 0;
    font-weight: 600;
    color: black;
}


.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 10px 0;

    scroll-behavior: smooth;

    /* ADD THESE TWO LINES */
    scroll-snap-type: x mandatory;
    scroll-padding-left: 10px; /* Gives a little breathing room on the left */
}

.scroll-card {
    width: 250px;          /* choose any width */
    flex-shrink: 0;        /* prevents shrinking */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 350px;

    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s;

    /* ADD THIS LINE */
    scroll-snap-align: start; /* Forces the card to align perfectly */
}

.image-wrapper {
    width: 100%;
    height: 280px;        /* fixed height so images align */
    border-radius: 14px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* image fills area perfectly */
    display: block;
}

.cat-name {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}


.image-modal {
  visibility: hidden;
  opacity: 0;
  background: rgba(0,0,0,0);
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
 transition: opacity .4s ease, background .4s ease, visibility .4s ease;

}

.flex-center {
   display: flex;
   justify-content: center;
   align-items: center;
}

.image-modal.show {
  visibility: visible;
  opacity: 1;
  background: rgba(0,0,0,0.85);
}

.image-modal.hide {
  visibility: hidden;
  opacity: 0;
  background: rgba(0,0,0,0);
}

.modal-inner {
    transform: scale(0.9);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: auto;
}

/* Animate the inner popup */
.image-modal.show .modal-inner {
    animation: popIn 0.35s ease forwards;
    transform: scale(1);
    opacity: 1;
}

@keyframes popIn {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-content {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 5px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

.image-modal {
  pointer-events: auto;
}
/* CLOSE animation */
.image-modal.hide .modal-inner {
    transform: scale(0.85);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

/* DESKTOP: 3/4th of screen height */
.header-carousel .owl-carousel-item {
    height: 92.5vh;             /* 75% of the viewport height */
    min-height: 500px;        /* Prevent it from getting too small on laptops */
    position: relative;
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Ensures image covers the area without stretching */
    object-position: center;  /* Centers the jewelry */
}

/* MOBILE: Adjust for smaller screens */
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        height: 60vh;         /* Slightly smaller on phone is okay */
        min-height: 400px;
    }
}

/**/

.navbar-logo {
    height: 40px;
    width: 40px;
    display: block;
    transform: scale(1.3);
    object-fit: contain;
    vertical-align: middle;
    position: relative;

    /* --- Mobile Positioning (from previous step) --- */
    top: 0;
    right: 25px;
    /*margin-top: 11px;*/
    /*margin-left: 11px;*/
    padding-bottom: 0;

    /* --- ANIMATION SETTINGS --- */
    /* smooth fade in/out over 0.4 seconds */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}

/* Desktop override (keep your existing desktop styles here) */
@media (min-width: 992px) {
    .navbar-logo {
        top: 8px;
        right: 25px;
        padding-bottom: 12px;
        margin-top: 0;
        margin-left: 0;
        height: 60px;
        width: 60px;

        /* Ensure logo is always visible on Desktop, even if JS tries to hide it */
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* --- NEW CLASS: Hides the logo --- */
.logo-hidden {
    opacity: 0;
    visibility: hidden;
}
/* --- EMERGENCY FIX: FORCE HIDE SPINNER --- */
#spinner {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    pointer-events: none !important;
}
/* ----------------------------------------- */