:root {
    --primary-color: #007474;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --accent-color: #f5f5f5;
    --transition-speed: 0.4s;
}

/* Base Animations */
@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 116, 116, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 116, 116, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 116, 116, 0); }
}

@keyframes glowBorder {
    0% { box-shadow: 0 0 0 0 rgba(0, 116, 116, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 116, 116, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 116, 116, 0); }
}

@keyframes rotate3d {
    0% { transform: perspective(1000px) rotateY(0deg); }
    100% { transform: perspective(1000px) rotateY(360deg); }
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Grey Qo', cursive;
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.5s ease;
    animation: fadeIn 1s ease;
}

.navbar:hover {
    box-shadow: 0 6px 25px rgba(0, 116, 116, 0.2);
}

.menu-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-icon:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

.menu-icon i {
    font-size: 1.5rem;
}

.logo {
    width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons i {
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.nav-icons i:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    height: 600px;
    animation: fadeIn 1.5s ease;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero:hover img {
    transform: scale(1.1);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 116, 116, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 116, 116, 0.3) 100%);
    opacity: 0;
    transition: opacity 1.5s ease;
    animation: shimmer 8s infinite linear;
    background-size: 200% 100%;
}

.hero:hover::after {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: right;
    color: #fff;
    z-index: 1;
    width: 50%;
}

#elegance_p {
    font-size: 3rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.5s forwards 0.5s, float 6s ease-in-out 2s infinite;
    text-shadow: 0 0 10px rgba(0, 116, 116, 0.8);
    font-family: 'Grey Qo', cursive;
}

/* Section Titles */
.section-title {
    text-decoration: none;
    position: relative;
    font-family: 'Grey Qo', cursive;
    color: var(--primary-color);
    text-align: center;
    padding: 30px 0 20px;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeIn 1s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: pulse 2s infinite;
}

/* Product Cards */
.product-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    animation: fadeIn 1.5s ease;
}

.product-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(38, 208, 157, 0.2);
}

.product-image-container {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.product-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-image-container::after {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.product-card:hover .product-info {
    background-color: rgba(0, 116, 116, 0.05);
}

.product-name {
    font-family: 'Grey Qo', cursive;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--primary-color);
}

.product-price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.product-card:hover .product-price-container {
    transform: scale(1.1);
}

.price {
    font-size: 1.5rem;
    font-family: 'Grey Qo', cursive;
    color: var(--primary-color);
    font-weight: 600;
}

.icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.product-card:hover .icon {
    transform: scale(1.2);
}

/* Lifestyle Sections */
.container-lifestyle {
    max-height: 700px;
    overflow: hidden;
    margin: 50px 0;
    animation: fadeIn 1.5s ease;
}

.carousel-item {
    height: 700px;
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 3s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    max-width: 80%;
    animation: fadeInUp 1s ease;
}

.carousel-caption h5 {
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease;
}

.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.5s ease 0.3s;
}

.dedicated-mens-section {
    height: 700px;
    overflow: hidden;
    position: relative;
}

.dedicated-mens-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 3s ease;
}

.dedicated-mens-section:hover img {
    transform: scale(1.1);
}

.dedicated-mens-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4));
    transition: opacity 0.5s ease;
    opacity: 0;
}

.dedicated-mens-section:hover::after {
    opacity: 1;
}

/* Icon Groups */
.icon_group {
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon_group:hover {
    transform: scale(1.3);
    color: #00a8a8;
}

#pipe {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
    font-size: 40px;
    color: #ddd;
    animation: pulse 2s infinite;
}

/* Feature Cards / Blog Section */
.blogtitle {
    font-family: 'Gruppo', sans-serif;
    font-size: 50px;
    color: var(--primary-color);
    margin: 50px 0 30px;
    text-align: center;
    position: relative;
    animation: fadeIn 1.5s ease;
}

.blogtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.feature-card {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
    animation: fadeIn 1.5s ease;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 116, 116, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.feature-card:hover::before {
    top: 0;
    left: 0;
    animation: shimmer 2s infinite;
}

.feature-card h3 {
    font-family: 'Grey Qo', cursive;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 2rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.5s ease;
}

.feature-card:hover h3::after {
    width: 100%;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    transform: translateY(-5px);
}

/* Footer */
.footer-section {
    background-color: rgba(0, 116, 116, 0.95);
    padding: 70px 0 30px;
    color: white;
    position: relative;
    animation: fadeIn 1.5s ease;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, var(--primary-color), transparent, var(--primary-color));
}

.bottom_logo {
    width: 500px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    animation: pulse 3s infinite;
}

.bottom_logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.footer-section h4 {
    font-family: 'Grey Qo', cursive;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.footer-section a {
    font-style: normal;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: capitalize;
}

.footer-section a:hover {
    color: #e0e0e0;
    transform: translateX(10px);
}

.footer-section ul li {
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 116, 116, 0.97);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    padding-top: 20px;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.close-btn {
    cursor: pointer;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.2);
    color: #e0e0e0;
}

.sidebar-content {
    padding: 30px 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.sidebar.active .sidebar-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.sidebar.active .sidebar-menu li:nth-child(2) {
    animation-delay: 0.2s;
}

.sidebar.active .sidebar-menu li:nth-child(3) {
    animation-delay: 0.3s;
}

.sidebar-menu li a {
    display: block;
    padding: 15px 30px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Grey Qo', cursive;
    font-size: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.sidebar-menu li a:hover::before {
    left: 0;
}

.sidebar-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(10px);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease;
}

.slide-in {
    animation: slideInRight 1s ease;
}

.slide-left {
    animation: slideInLeft 1s ease;
}

.scale-up {
    animation: scaleUp 1s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        height: 500px;
    }

    #elegance_p {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 40px;
    }

    .product-image-container {
        height: 350px;
    }

    .carousel-item, .dedicated-mens-section {
        height: 500px;
    }

    .feature-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-content {
        right: 5%;
        width: 70%;
    }

    #elegance_p {
        font-size: 2rem;
    }

    .section-title {
        font-size: 35px;
    }

    .product-image-container {
        height: 300px;
    }

    .carousel-item, .dedicated-mens-section {
        height: 400px;
    }

    .carousel-caption h5 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .bottom_logo {
        width: 300px;
        height: 50px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 300px;
    }

    .hero-content {
        right: 5%;
        width: 80%;
    }

    #elegance_p {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 30px;
    }

    .product-image-container {
        height: 250px;
    }

    .carousel-item, .dedicated-mens-section {
        height: 300px;
    }

    .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .blogtitle {
        font-size: 30px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .bottom_logo {
        width: 200px;
        height: 40px;
    }
}
/* #################################################################################################################################### */
.more-products-section {
    margin: 50px 0;
    overflow: hidden;
}

.promo-banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.promo-banner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-banner:hover img {
    transform: scale(1.05);
}

.promo-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.2);
}

.promo-subtitle {
    font-family: 'Grey Qo', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.promo-title {
    font-family: 'Grey Qo', cursive;
    font-size: 8rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 210, 0.9);
    animation: fadeInUp 1.5s ease;
}

.shop-now-btn {
    display: inline-block;
    padding: 12px 36px;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 30px;
    color: #333;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 2s ease;
}

.shop-now-btn:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .promo-title {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .promo-banner img {
        height: 400px;
    }
    
    .promo-subtitle {
        font-size: 2rem;
    }
    
    .promo-title {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .promo-banner img {
        height: 300px;
    }
    
    .promo-subtitle {
        font-size: 1.5rem;
    }
    
    .promo-title {
        font-size: 3rem;
    }
    
    .shop-now-btn {
        padding: 8px 24px;
        font-size: 1rem;
    }
}
/* ########################################################################################3 */
.parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin: 50px 0;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
}

.parallax-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.parallax-title {
    font-family: 'Grey Qo', cursive;
    font-size: 8rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.5s ease;
}

.parallax-subtitle {
    font-family: 'Grey Qo', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
}

.parallax-products {
    background-color: white;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .parallax-title {
        font-size: 6rem;
    }
    .parallax-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .parallax-title {
        font-size: 4rem;
    }
    .parallax-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .parallax-title {
        font-size: 3rem;
    }
    .parallax-subtitle {
        font-size: 1.2rem;
    }
}