/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}


/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 800 !important;
    font-family: 'Poppins', sans-serif;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 400 !important;
    font-family: 'Poppins', sans-serif;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/

.btn.btn-primary {
    border: 0;
    color: white;
}

.btn.btn-primary:hover {
    background: #FFFFFF !important;
    color: #d51920 !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Button End ***/


/*** Navbar Start ***/

.nav-bar {
    background: #fdfdfd;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 200s;
        opacity: 0;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}


/*** Navbar End ***/


/*** Events Start ***/

.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(113, 113, 250, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}


/*** Events End ***/


/*** service start ***/

.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}


/*** Services End ***/


/*** Menu Start ***/

.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}


/*** Menu End ***/

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1EBE5D;
    color: #fff;
    transform: scale(1.1);
}


/* FontAwesome icon styling */

.whatsapp-float i {
    color: white;
}

@keyframes whatsapp-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.whatsapp-float {
    animation: whatsapp-bounce 2s infinite;
}

.text-footer {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.text-footer :hover {
    color: #fed753;
    text-decoration: none;
}

.service-item {
    box-shadow: 0 8px 20px rgba(1, 71, 211, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.custom-card {
    background-color: #fff;
    color: #000;
    transition: all 0.4s ease-in-out;
}

.custom-card:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

.custom-card:hover .card-title,
.custom-card:hover .card-text {
    color: #fff;
}

.transition {
    transition: all 0.4s ease-in-out;
}

.parallax-section {
    background-image: url('../img/banner\ bg.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/*** Youtube Video start ***/

.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(../img/sddefault.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-white);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Youtube Video End ***/


/*** Blog Start ***/

.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3)
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}


/*** Blog End ***/


/*** Team Start ***/

.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}


/*** Team End ***/


/*** testimonial Start ***/

.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}


/*** testimonial End ***/


/*** Contact start ***/

.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}


/*** Contact End ***/


/*** Footer Start ***/

.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}

.spice-card {
    overflow: hidden;
    border-radius: 50%;
    width: 80%;
    height: 80%;
}

.spice-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInOut 4s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.spice-card-large {
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

.spice-card-small {
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.spice-zoom {
    transition: transform 0.6s ease;
}


/*** Footer End ***/


/* SPICE CARDS */

.spice-card1 {
    height: 350px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.spice-card1:hover {
    transform: scale(1.05);
}

.spice-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.spice-img-hover {
    opacity: 0;
    z-index: 2;
}

.spice-card1:hover .spice-img-hover {
    opacity: 1;
}

.spice-card1:hover .spice-img-main {
    opacity: 0;
}

.spice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 53, 69, 0.7);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}


/* Example overlay colors */

.overlay-chilli {
    background: rgba(220, 20, 60, 0.5);
    /* crimson-ish */
}

.overlay-turmeric {
    background: rgba(218, 165, 32, 0.5);
    /* goldenrod */
}

.overlay-ginger {
    background: rgba(205, 133, 63, 0.5);
    /* peru brown */
}

.spice-card1:hover .spice-overlay {
    opacity: 1;
}

.spice-services {
    position: relative;
    overflow: hidden;
}


/* Shared styles for all corner shapes */

.spice-glow-img {
    border-radius: 50%;
    width: 250px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(220, 54, 54, 0.5);
    transition: transform 0.3s ease;
}

.spice-glow-img:hover {
    transform: scale(1.1);
}

.spice-glow-text {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.9);
}

.glow-wrapper {
    padding: 20px;
}


/* Optional: softer glow around the section background */

.bg-dark.glow-section {
    box-shadow: inset 0 0 60px rgba(255, 0, 0, 0.3);
}


/* Container glow wrapper */


/* Image glow + shadow + subtle reflection */

.spice-glow-img {
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}


/* Add a reflection below the circle */

.spice-glow-img::after {
    content: "";
    display: block;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    position: absolute;
    bottom: -10%;
    left: 0;
    border-radius: 50%;
    transform: scaleY(-1);
    opacity: 0.3;
    pointer-events: none;
}


/* Zoom + glow on hover */

.spice-glow-img:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
    filter: brightness(1.5) saturate(1.9);
}


/* Optional slight “shine” overlay on hover */

.spice-glow-img:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.accordion-button {
    background: linear-gradient(to right, #ffefeb, #fff);
    color: #b20000;
    font-weight: bold;
    box-shadow: inset 0 0 0 0 #fd7835ae;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: linear-gradient(to right, #ffe5d9, #fff5f0);
    box-shadow: inset 300px 0 0 0 #e67f3067;
    color: #ee3737;
}

.accordion-button:focus {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.accordion-item {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.accordion-body {
    background: #fffefb;
    color: #333;
    padding: 1rem 1.5rem;
    font-size: 16px;
    border-top: 1px solid #f5f5f5;
}


/* Optional glowing effect on expanded panels */

.accordion-collapse.show {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    border-radius: 8px;
}


/* Zoom effect on hover */


/* ------------------------------------------
   Responsive Adjustments
-------------------------------------------- */


/* Large screens (1200px and below) */

@media (max-width: 1200px) {
    .my-6 {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}


/* Medium devices (tablets, <= 992px) */

@media (max-width: 992px) {
    /* Navbar tweaks */
    .navbar .navbar-nav .nav-link {
        font-size: 15px;
        padding: 8px 10px;
    }
    /* Spice cards */
    .spice-card-large {
        width: 350px;
        height: 350px;
    }
    .spice-card-small {
        width: 120px;
        height: 120px;
    }
    .video {
        min-height: 300px;
    }
    .btn-lg-square {
        width: 48px;
        height: 48px;
    }
    .btn-md-square {
        width: 40px;
        height: 40px;
    }
}


/* Small devices (phones, <= 768px) */

@media (max-width: 768px) {
    .my-6 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .spice-card-large {
        width: 250px;
        height: 250px;
    }
    .spice-card-small {
        width: 100px;
        height: 100px;
    }
    .video {
        min-height: 250px;
    }
    .spice-glow-img {
        width: 200px;
        height: 160px;
    }
    .btn-lg-square {
        width: 40px;
        height: 40px;
    }
    .btn-md-square {
        width: 36px;
        height: 36px;
    }
}


/* Extra small devices (mobile, <= 576px) */

@media (max-width: 576px) {
    .spice-card-large {
        width: 180px;
        height: 180px;
    }
    .spice-card-small {
        width: 80px;
        height: 80px;
    }
    .video {
        min-height: 200px;
    }
    .spice-glow-img {
        width: 160px;
        height: 120px;
    }
    .btn-lg-square {
        width: 32px;
        height: 32px;
    }
    .btn-md-square {
        width: 50px;
        height: 50px;
    }
    .navbar .navbar-nav .nav-link {
        font-size: 14px;
        padding: 6px 8px;
    }
    .my-3 {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .py-3 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}


/* Parallax fix for mobile */

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}


/* Optional flexible spice card sizes instead of fixed px */

.spice-card-large {
    max-width: 100%;
    height: auto;
}

.spice-card-small {
    width: 40vw;
    max-width: 160px;
    height: auto;
}


/* Responsive spice grid (if used) */

.spice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}


/* Responsive text size for feature list */

@media (max-width: 768px) {
    .responsive-list {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .responsive-list {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .responsive-list li {
        margin-bottom: 1rem;
    }
}


/* Bulk image container height */

.bulk-image-container {
    overflow: hidden;
    border-radius: 20px;
}

.bulk-image-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 10px 10px 10px 10px;
    transition: transform 0.5s ease;
}

body {
    margin: 0;
    font-family: sans-serif;
    background: #f4f4f4;
}

.image-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px;
}

.image-card {
    position: relative;
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 500px;
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: opacity 0.5s ease;
}

.image-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.overlay p {
    margin: 0;
    font-size: 16px;
}

.corner-bottom-left {
    bottom: -40px;
    left: 0;
}

.corner-bottom-right {
    bottom: -40px;
    right: 0;
}


/* Spice Card */

.spice-card1 {
    background: #fff;
    transition: all 0.4s ease;
    border-radius: 15px;
    height: 350px;
}

.spice-card1:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(213, 25, 32, 0.3);
}

.spice-card1-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spice-card1:hover .spice-card-img img {
    transform: scale(1.1) rotate(-2deg);
}

.spice-card2 {
    background: #fff;
    transition: all 0.4s ease;
    border-radius: 15px;
    height: 550px;
}

.spice-card2:hover {
    transform: translateY(-10px) scale(1.03);
}

.spice-card2-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* Floating Spice Shapes (Powder-like Particles) */

.spice-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    background: radial-gradient(circle, rgba(213, 25, 32, 0.6) 0%, transparent 70%);
    animation: float 8s infinite ease-in-out;
}

.shape1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape2 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 10%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.6) 0%, transparent 70%);
}

.shape3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(0, 150, 50, 0.6) 0%, transparent 70%);
}

.shape4 {
    width: 140px;
    height: 140px;
    bottom: 5%;
    right: 5%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.6) 0%, transparent 70%);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(20deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}


/* Section Background */

#spice-cards {
    background: linear-gradient(135deg, #fff7f5, #fffbe6);
    position: relative;
    z-index: 1;
}

#spice-cards .spice-shape {
    z-index: 0;
}

.banner-section {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.45);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 2s ease forwards;
}


/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
    .banner-section {
        height: 50vh;
    }
    .banner-title {
        font-size: 2.5rem;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .banner-section {
        height: 30vh;
    }
    .banner-title {
        font-size: 1rem;
        /* Smaller font for small screens */
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* <!-- Extra CSS for Hover Effect --> */

.hover-shadow {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-shadow:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* Background zoom animation */

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    z-index: -1;
    animation: zoomBg 20s ease-in-out infinite alternate;
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}


/* Card Styling */

.highlight-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.highlight-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive Typography */

#highlights h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

#highlights p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}


/* Mobile adjustments */

@media (max-width: 576px) {
    .highlight-card {
        padding: 1rem;
    }
    .highlight-img {
        width: 70px;
        height: 70px;
    }
}


/* Spice Corner Decorations */

.spice-decor {
    position: absolute;
    z-index: 1;
    opacity: 0.9;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
}


/* Desktop (≥1200px) */

@media (min-width: 1200px) {
    .spice-decor {
        width: 120px;
    }
    .spice-decor-top-left {
        top: 20px;
        left: 20px;
    }
    .spice-decor-bottom-right {
        top: 20px;
        right: 20px;
    }
    .spice-decor-bottom-left {
        bottom: 10px;
        right: 20px;
    }
    .spice-decor-top-right {
        bottom: 20px;
        left: 20px;
    }
}


/* Tablet (768px–1199px) */

@media (min-width: 768px) and (max-width: 1199px) {
    .spice-decor {
        width: 90px;
    }
    .spice-decor-top-left {
        top: 15px;
        left: 15px;
    }
    .spice-decor-bottom-right {
        top: 15px;
        right: 15px;
    }
    .spice-decor-bottom-left {
        bottom: 15px;
        right: 15px;
    }
    .spice-decor-top-right {
        bottom: 15px;
        left: 15px;
    }
}


/* Mobile (≤767px) */

@media (max-width: 767px) {
    .spice-decor {
        width: 60px;
    }
    .spice-decor-top-left {
        top: 10px;
        left: 10px;
    }
    .spice-decor-bottom-right {
        top: 10px;
        right: 10px;
    }
    .spice-decor-bottom-left {
        bottom: 10px;
        right: 10px;
    }
    .spice-decor-top-right {
        bottom: 10px;
        left: 10px;
    }
}


/* Card Styling Enhancement */

.spice-card2 {
    background: #fff;
    border: 1px solid #f2e1c1;
    box-shadow: 0px 5px 15px rgba(200, 100, 50, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.spice-card2:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 20px rgba(200, 100, 50, 0.25);
}


/* Highlight card image */

.highlight-card {
    background: #ffffff75;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* Image adjustments */

.highlight-img {
    width: 100%;
    max-width: 320px;
    /* bigger size than before */
    height: 200px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}


/* Responsive tweaks */

@media (max-width: 768px) {
    .highlight-img {
        max-width: 260px;
        /* Tablet */
    }
}

@media (max-width: 576px) {
    .highlight-img {
        max-width: 200px;
        /* Mobile */
    }
}

.counter-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: #fff;
}

.counter-box {
    background: hwb(0 1% 11%);
    border: 1px solid hwb(0 3% 15%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsl(0, 0%, 100%);
}

.counter-text {
    margin-top: 0.8rem;
    font-size: 1rem;
    color: hsl(0, 100%, 99%);
}

.filter-buttons {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-buttons button {
    background: #fff;
    color: #d62828;
    border: 2px solid #d62828;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background: #d62828;
    /* Red */
    color: #fff;
    border-color: #d62828;
}


/* 🔳 Product Cards Grid */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    display: none;
    /* hidden by default, JS will show */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.card h3 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.card:hover {
    transform: translateY(-5px);
}


/* 📱 Responsive */

@media (max-width: 992px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

.feature-section {
    background: #f9fafb;
    padding: 4rem 1.5rem;
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}


/* Text */

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 1rem;
    font-family: inherit;
    /* matches your stylesheet font */
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    font-family: inherit;
}


/* Image styling */

.feature-image {
    flex-shrink: 0;
    width: 400px;
    height: 280px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 12px 30px var(--shadow);
    background: #fff;
    perspective: 1000px;
    /* for 3D pop effect */
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.25s ease;
    display: block;
}


/* Responsive */

@media (max-width: 992px) {
    .feature-container {
        flex-direction: column;
        text-align: left;
    }
    .feature-image {
        width: 100%;
        max-width: 380px;
        height: 260px;
    }
}

.journey-section {
    background: #f9fafb;
    font-family: inherit;
    padding: -10px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.journey-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.journey-block.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.image-wrapper {
    width: 50%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

.image-wrapper.right {
    border-top-left-radius: 80% 100%;
    border-bottom-left-radius: 80% 100%;
    border-top-right-radius: 80% 100%;
    border-bottom-right-radius: 0;
    margin-left: auto;
}

.image-wrapper.left {
    border-top-right-radius: 80% 100%;
    border-bottom-right-radius: 80% 100%;
    border-top-left-radius: 80% 100%;
    border-bottom-left-radius: 0;
    margin-right: auto;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrapper:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .journey-block,
    .journey-block.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .text-content {
        width: 100%;
        /* Make sure it stays within the container */
        max-width: 90%;
        /* Prevent text from touching edges */
        margin: 0 auto;
        /* Center the text block */
    }
    .text-content p {
        word-wrap: break-word;
        /* Handle very long words */
        overflow-wrap: break-word;
    }
    .image-wrapper {
        width: 100%;
        height: 320px;
        border-radius: 50% !important;
        /* fallback on mobile */
        margin: 1.5rem 0;
    }
}

.slideshow-container {
    position: relative;
    /* Make absolute slides relative to this */
    min-height: 520px;
    /* Reserve space for the slideshow */
    overflow: hidden;
}

.journey-block {
    position: absolute;
    /* Only for animation inside container */
    top: 0;
    left: 0;
    width: 100%;
}

html,
body {
    overflow-x: hidden;
    /* removes horizontal scrollbar */
}

.section {
    display: flex;
    align-items: center;
    position: relative;
    gap: 80px;
    margin: -10px 0;
}

.section.reverse {
    flex-direction: row-reverse;
}


/* Text block */

.text {
    width: 65%;
    font-size: 1.1rem;
    color: #333;
}

.text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* Circular media */

.media {
    width: 500px;
    /* adjust as needed */
    height: 450px;
    /* adjust as needed */
    border-radius: 50%;
    /* makes the container circular */
    overflow: hidden;
    /* ensures zoomed image doesn’t leak outside */
    display: flex;
    justify-content: center;
    align-items: center;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* keeps image ratio inside circle */
    animation: zoomInOut 4s infinite alternate ease-in-out;
}

.media video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* keeps image ratio inside circle */
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
        /* zoom level */
    }
}


/* --- Animations --- */

.slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.hidden-slide {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive */

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        margin: 20px;
    }
    .section.reverse {
        flex-direction: column;
    }
    .text {
        width: 100%;
        margin-bottom: 20px;
    }
    .media {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
    }
    .media img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        /* keeps image ratio inside circle */
        animation: zoomInOut 4s infinite alternate ease-in-out;
    }
    .media video {
        width: 100%;
        height: 100%;
        object-fit: fill;
        /* keeps image ratio inside circle */
    }
}

.counter-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 2 cards per row */
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

.counter-box {
    width: 300px;
    /* fixed width */
    height: 300px;
    display: flex;
    flex-direction: column;
    /* image on top, text below */
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    /* allow flexible height */
    background: hsl(0, 100%, 37%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.counter-icon {
    width: 100px;
    /* fixed width */
    height: 100px;
    /* fixed height */
    margin: 0 0 1rem 0;
    padding: 0;
    object-fit: fill;
    /* keep aspect ratio inside box */
    border-radius: 50%;
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 0.5rem 0;
}

.counter-text {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

@media (max-width: 1200px) {
    .counter-section {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .counter-section {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 1.5rem;
        align-items: center;
    }
    .counter-box {
        flex-direction: column;
        /* stack text + icon vertically */
        text-align: center;
    }
    .counter-icon {
        width: 50%;
        height: auto;
        margin: 1rem 0 0;
        padding: 0;
    }
    .counter-number {
        font-size: 1.8rem;
    }
    .counter-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 680px) {
    .counter-number {
        font-size: 1.5rem;
    }
    .counter-text {
        font-size: 0.85rem;
    }
    .counter-icon {
        width: 40%;
    }
}


/* <!-- Responsive & Animation CSS --> */

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Decorative Shape Animation */

.animate-shape {
    animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(8deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


/* Responsive Fixes */

@media (max-width: 767px) {
    .contact-form .d-flex {
        flex-direction: column;
        text-align: center;
    }
    .contact-form i {
        margin-bottom: 10px;
        margin-right: 0 !important;
    }
}

.contact-card {
    background: rgba(185, 41, 41, 0.9);
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}


/* Hover effect */

.contact-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.6);
    border-color: orange;
}


/* Icon color */

.contact-card i {
    color: orange;
    text-shadow: 0 0 6px rgba(255, 165, 0, 0.8);
}


/* Responsive */

@media (max-width: 768px) {
    .contact-card {
        text-align: center;
        justify-content: center !important;
    }
    .contact-card i {
        margin-bottom: 10px;
        margin-right: 0 !important;
    }
}


/* Rotation Animation */

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-shape {
    animation: spin 20s linear infinite;
}

.rotate-shape.reverse {
    animation-direction: reverse;
}


/* Fade-in Animation for List Items */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s forwards;
}


/* Shape Animations */

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.float-shape {
    animation: floatY 6s ease-in-out infinite;
    opacity: 1;
}

.section {
    display: flex;
    align-items: center;
    position: relative;
    gap: 80px;
    margin: -10px 0;
}

.section.reverse {
    flex-direction: row-reverse;
}


/* Text block */

.text {
    width: 65%;
    font-size: 1.1rem;
    color: #333;
}

.text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* Circular media */

.media {
    width: 500px;
    /* adjust as needed */
    height: 450px;
    /* adjust as needed */
    border-radius: 50%;
    /* makes the container circular */
    overflow: hidden;
    /* ensures zoomed image doesn’t leak outside */
    display: flex;
    justify-content: center;
    align-items: center;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* keeps image ratio inside circle */
    animation: zoomInOut 4s infinite alternate ease-in-out;
}

.media video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* keeps image ratio inside circle */
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
        /* zoom level */
    }
}


/* --- Animations --- */

.slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.hidden-slide {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive */

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        margin: 20px;
    }
    .section.reverse {
        flex-direction: column;
    }
    .text {
        width: 100%;
        margin-bottom: 20px;
    }
    .media {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        margin-bottom: 2%;
    }
    .media img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        /* keeps image ratio inside circle */
        animation: zoomInOut 4s infinite alternate ease-in-out;
    }
    .media video {
        width: 100%;
        height: 100%;
        object-fit: fill;
        /* keeps image ratio inside circle */
    }
}

.counter-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 2 cards per row */
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
}

.counter-box {
    width: 300px;
    /* fixed width */
    height: 300px;
    display: flex;
    flex-direction: column;
    /* image on top, text below */
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    /* allow flexible height */
    background: hsl(0, 100%, 37%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.counter-icon {
    width: 100px;
    /* fixed width */
    height: 100px;
    /* fixed height */
    margin: 0 0 1rem 0;
    padding: 0;
    object-fit: fill;
    /* keep aspect ratio inside box */
    border-radius: 50%;
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 0.5rem 0;
}

.counter-text {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

@media (max-width: 1200px) {
    .counter-section {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
        align-items: center;
    }
}

@media (max-width: 768px) {
    .counter-section {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 1.5rem;
        align-items: center;
        padding-left: 13%;
    }
    .counter-box {
        flex-direction: column;
        /* stack text + icon vertically */
        text-align: center;
    }
    .counter-icon {
        width: 50%;
        height: auto;
        margin: 1rem 0 0;
        padding: 0;
    }
    .counter-number {
        font-size: 1.8rem;
    }
    .counter-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 680px) {
    .counter-number {
        font-size: 1.5rem;
    }
    .counter-text {
        font-size: 0.85rem;
    }
    .counter-icon {
        width: 40%;
    }
}


/* --- Floating Images in Background --- */

.floating-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* don’t block clicks */
    overflow: hidden;
    z-index: -1;
    /* push behind everything */
}

.floating {
    position: absolute;
    width: 60px;
    opacity: 0.6;
    animation: floatAnim 25s infinite linear;
}

.floating:nth-child(1) {
    top: 5%;
    left: 10%;
    animation-duration: 28s;
}

.floating:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-duration: 32s;
}

.floating:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-duration: 26s;
}

.floating:nth-child(4) {
    top: 75%;
    left: 60%;
    animation-duration: 35s;
}

@keyframes floatAnim {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(80px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-60px, -100px) rotate(180deg);
    }
    75% {
        transform: translate(100px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}


/* --- Rotating Borders around Media --- */

.media-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}


/* Hover effect (media pops out) */

.media-wrapper:hover {
    transform: scale(1.08);
    z-index: 5;
    /* ensure it comes above floating images */
}

.rotating-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 3px solid red;
    border-radius: 50%;
    animation: rotateBorder 14s linear infinite;
    z-index: -1;
}


/* Outer rotating border (dashed one) */

.rotating-border.second {
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed rgba(255, 0, 0, 0.6);
    border-radius: 50%;
    animation: rotateBorder 20s linear infinite;
    animation-direction: reverse;
    position: absolute;
    overflow: visible;
    /* allow child to show outside */
}


/* Image attached to border */


/* Image attached to border */

.rotating-border.second .orbit-image {
    position: absolute;
    top: -25px;
    /* sits on top edge of circle */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    z-index: 10;
    /* ensures it stays above video/image */
}

.rotating-border.second .orbit-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    background: #fff;
    /* helps it pop against video */
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}