.equalSpacing {
    padding: 50px 0px;
}

.ot-product.product-grid.bg-white {
    animation-name: slideInUp;
    animation-duration: 900ms;
    animation-timing-function: ease;
    animation-delay: 270ms;
    animation-direction: normal;
    animation-fill-mode: both;
}

/* sign up and login page */
.login-page .left-panel {
    background: #00bbae !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.login-page .left-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.login-page .left-panel h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
    color: white;
}

.login-page .left-panel p {
    font-size: 1.1em;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
    opacity: 0.9;
    color: white;
}

.login-page .switch-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.login-page .switch-btn:hover {
    background: white;
    color: #4CAF50;
    transform: translateY(-2px);
}

.login-page .right-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-page .form-title {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.login-page .form-group {
    margin-bottom: 20px;
}

.login-page .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.login-page .required {
    color: #e74c3c;
}

.login-page .form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.login-page .form-group input:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.login-page .form-group input.error {
    border-color: #e74c3c;
}

.login-page .submit-btn {
    width: 100%;
    padding: 15px;
    background: #1ac2b6;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.login-page .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.login-page .forgot-password {
    text-align: center;
    color: #4CAF50;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.login-page .forgot-password:hover {
    color: #45a049;
    text-decoration: underline;
}

.login-page .slide-in {
    animation: slideIn 0.6s ease forwards;
}

.login-page .slide-out {
    animation: slideOut 0.6s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.login-page .hidden {
    display: none;
}

.login-page .col-six {
    display: flex;
}

.main-menu {
    margin-left: -132px;
}

.sticky-wrapper .row .col-auto:nth-child(1) {
    width: 15%;
}

.sticky-wrapper .row .header-logo {
    padding: 0 0 !important;
}

.sticky-wrapper .row .header-logo img {
    width: 100%;
}

.footer-widget .about-logo {
    margin-bottom: 27px;
    text-align: left;
}

.footer-widget img {
    width: 80%;
}

.wowSLider .row>* {
    padding: 0px 0px !important;
}


@media (max-width: 768px) {
    .login-page .container {
        flex-direction: column;
        max-width: 400px;
    }

    .login-page .left-panel {
        padding: 30px;
    }

    .login-page .left-panel h1 {
        font-size: 2em;
    }

    .right-panel {
        padding: 30px;
    }

    .modal-content {
        width: 90% !important;
    }

    .sticky-wrapper .row .col-auto:nth-child(1) {
        width: 50%;
    }

    .ot-header .menu-area {
        padding: 10px 0px;
    }

}

/* sign up and login page */

/* about us */
.about-us .hero-section {
    background: linear-gradient(135deg, #00bbae 0%, rgba(0, 187, 174, 0.8) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.about-us .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

.about-us .hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.about-us .bird-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.about-us .section-title {
    color: #00bbae;
    position: relative;
    margin-bottom: 3rem;
}

.about-us .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #00bbae;
    margin: 1rem auto;
    border-radius: 2px;
}

.about-us .intro-highlight {
    background: rgba(0, 187, 174, 0.1);
    border-left: 5px solid #00bbae;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.about-us .product-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-us .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #00bbae 0%, rgba(0, 187, 174, 0.8) 100%);
}

.about-us .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 187, 174, 0.2) !important;
}

.about-us .product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00bbae 0%, rgba(0, 187, 174, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.about-us .product-title {
    color: #00bbae;
    font-weight: bold;
}

.about-us .features-section {
    background: rgba(0, 187, 174, 0.1);
    border-radius: 20px;
}

.about-us .feature-item {
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: none;
    height: 100%;
}

.about-us .feature-item:hover {
    transform: scale(1.03);
}

.about-us .feature-icon {
    width: 60px;
    height: 60px;
    background: #00bbae;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-us .closing-section {
    background: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-us .closing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 187, 174, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-us .closing-text {
    color: #00bbae;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.about-us .heart-icon {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite alternate;
}

@keyframes heartbeat {
    to {
        transform: scale(1.1);
    }
}

.about-us .btn-primary {
    background: linear-gradient(135deg, #00bbae 0%, rgba(0, 187, 174, 0.8) 100%);
    border: none;
    border-radius: 25px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-us .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 187, 174, 0.3);
}

.about-us .shadow-custom {
    box-shadow: 0 15px 35px rgba(0, 187, 174, 0.1) !important;
}

.about-us .img-fluid {
    border-radius: 15px;
}

/* about us */

/* change password modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    position: relative;
}

.modal-content h2 {
    margin-top: 0;
    text-align: center;
    font-size: 23px;
}

.modal-content input:nth-child(3) {
    margin-bottom: 30px !important;
}

.modal-content input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

.modal-content button {
    padding: 10px;
    width: 100%;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.changepassword {
    list-style: none;
    padding: 10px;
}

.changepassword a {
    color: white;
    text-decoration: none !important;
}

.changepassword a:hover {
    text-decoration: underline;
}

/* change password modal */

#loader {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    /* semi-transparent white */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(4px);
    /* optional: adds blur effect */
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fade-out {
    opacity: 0;
    visibility: hidden;
}

#main-content {
    display: none;
    padding: 20px;
}

.login-main-menu li {
    display: block;
}

.login-main-menu li:after {
    display: none;
}

.login-main-menu {
    display: none;
    position: absolute;
    background: #00bbae;
    z-index: 1111;
    width: 200px;
    top: 40px;
    left: -92px;
}

.login-main-menu li {
    margin: 0px !important;
    border-bottom: 1px solid white;
    padding: 5px 10px;
}

/* .login-dropdown:hover .login-main-menu{
    display: block;
} */

.subMenuOne {
    display: none;
}

.subMenuTwo {
    display: none;
}

/* 404 page */
.error-main-section {
    background-color: #00bbae;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.error-main-section .container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.error-main-section .error-code {
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

.error-main-section .error-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.error-main-section .error-message {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-main-section .btn-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-main-section .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #00bbae;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
}

.error-main-section .btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.error-main-section .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.error-main-section .btn-secondary:hover {
    background-color: white;
    color: #00bbae;
    border-color: white;
}

.error-main-section .floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.error-main-section .shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.error-main-section .shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.error-main-section .shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.error-main-section .shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.error-main-section .shape:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

.trendingItemSection {
    margin-top: 80px;
}

.trendingItemSection .trendingItemBird img {
    border-radius: 50px;
    box-shadow: -1px 2px 20px 2px rgb(0 0 0 / 10%);
}

#recent-item {
    position: inherit !important;
    height: auto !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 31px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: background-color 0.3s;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
}

.whatsapp-icon {
    font-family: "Font Awesome 5 Brands";
}

@media (max-width: 768px) {
    .error-main-section .container {
        padding: 1.5rem;
    }

    .error-main-section .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .error-main-section .btn {
        width: 100%;
        max-width: 250px;
    }

    .error-main-section .shape {
        display: none;
    }

    .trendingItemDiv {
        display: none;
    }

    #trendingItemRow .row {
        position: inherit !important;
        height: inherit !important;
    }
}

@media (max-width: 480px) {
    .error-main-section .container {
        padding: 1rem;
    }

    .error-main-section .error-message {
        margin-bottom: 2rem;
    }
}

/* 404 page */