/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-gray); 
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background-color);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all var(--transition-speed) ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #29ABE2;
    transition: all var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    height: 10px;
}

.service-icon {
    font-size: 3rem;
    color: #29ABE2;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background-color: var(--dark-background); 
    color: var(--light-text);
}

.expertise-content {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 40px; 
}

.expertise-text-main {
    max-width: 800px; 
}

.expertise-text-main h2 {
    color: var(--light-text);
    position: relative;
    display: inline-block; 
    padding-bottom: 15px;
}
.expertise-text-main h2::after { 
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #29ABE2;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.expertise-text-main p {
    color: #E0E0E0; 
}

.expertise-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px; 
}

.highlight-item {
    background-color: rgba(255, 255, 255, 0.03); 
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.highlight-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: #29ABE2;
    box-shadow: 0 10px 25px rgba(41, 171, 226, 0.15);
}

.highlight-item i {
    font-size: 2.8rem;
    color: #29ABE2;
    margin-bottom: 20px;
    transition: transform var(--transition-speed) ease;
}
.highlight-item:hover i {
    transform: scale(1.1);
}

.highlight-item h4 {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #CCC; 
    line-height: 1.5;
    margin-bottom: 0;
}

/* .expertise-cta {
   
} */

.expertise-text ul {
    display: none; 
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--background-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-shape {
    max-width: 400px;
    margin: 0 auto;
}

.about-shape path {
    fill: #29ABE2;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text h3:first-child {
    margin-top: 0;
}
.whatsapp-button {
        position: fixed;
        bottom: 3%;
        right: 6%;
        color: green; 
        font-size: 44px;
        display: none;
        z-index: 900;
    
    }
    .whatsapp-button i {
        z-index: 1000; 
    }

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-gray);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
}

.value-item i {
    color: #29ABE2;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: var(--light-gray); 
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-category {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.product-category:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 2.5rem;
    color: #29ABE2;
    margin-bottom: 20px;
}

.product-category h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.product-category p {
    margin-bottom: 20px;
}

.shop-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--primary-color); 
    color: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color); 
}

.shop-cta h3 {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--background-color);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.contact-card {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color); 
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-form h3 {
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color); 
    box-shadow: 0 0 0 2px var(--shadow-color); 
}

/* Key Metrics Section */
.key-metrics {
    padding: 80px 0;
    background-color: var(--dark-background); 
    color: var(--light-text); 
}

.key-metrics .section-header h2,
.key-metrics .section-header p {
    color: var(--light-text);
}

.key-metrics .section-header h2::after {
    background-color: var(--primary-color); 
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.metric-item {
    padding: 30px 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: all var(--transition-speed) ease;
}

.metric-item:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.08); 
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.2); 
}

.metric-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.metric-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color); 
    margin-bottom: 5px;
}

.metric-item p {
    font-size: 1rem;
    color: #CCCCCC; 
    margin-bottom: 0;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
}

.partners .container {
    position: relative;
    z-index: 1;
}

.partners .subtle-section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #495057;
    margin-bottom: 40px;
    font-weight: 600;
}

@keyframes slides {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 30px 0;
    white-space: nowrap;
    position: relative;
}

.logos:before, .logos:after {
    position: absolute;
    top: 0;
    /* content: ''; */
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
    display: inline-block;
    animation: 30s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state:running;
}

.logo_items img {
    height: 60px;
    margin: 0 30px;
    transition: all 0.1s ease;
     image-rendering: auto; /* ou try crisp-edges pour certains navigateurs */
    backface-visibility: hidden; /* améliore le rendu lors des animations */

}

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


footer {
  background: #0a2239;
  color: #fff;
  padding: 48px 0 24px 0;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 24px auto;
}

.footer-item {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo img {
  display: block;
  margin-bottom: 12px;
  max-width: 160px;
  height: auto;
}

.footer-logo p {
  margin: 0;
  color: #b0c4d4;
  font-size: 1rem;
}

.footer-links h4,
.footer-connect h4,
.newsletter h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #b0c4d4;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #00b4d8;
}

.footer-connect .contact-details p {
  margin: 0 0 8px 0;
  color: #b0c4d4;
  font-size: 1rem;
}
.footer-connect .contact-details i {
  margin-right: 8px;
  color: #00b4d8;
}

.social-icons {
  margin: 16px 0 0 0;
}
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #b0c4d4;
  font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}
.social-icons a:hover {
  color: #00b4d8;
  transform: scale(1.15);
}

.newsletter {
  margin-top: 18px;
}
.newsletter input[type="email"] {
  padding: 8px 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 1rem;
  width: 160px;
  background: #fff;
  color: #0a2239;
}
.newsletter button {
  padding: 8px 16px;
  border: none;
  border-radius: 0 4px 4px 0;
  background: #00b4d8;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter button:hover {
  background: #0077b6;
}

.footer-bottom {
  border-top: 1px solid #1e3a5a;
  padding-top: 16px;
  text-align: center;
  color: #b0c4d4;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom-links {
  margin-top: 4px;
}
.footer-bottom-links a {
  color: #b0c4d4;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #00b4d8;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .footer-item {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 32px 0 16px 0;
    font-size: 0.98rem;
  }
  .footer-content {
    gap: 16px;
  }
  .footer-logo img {
    max-width: 120px;
  }
  .newsletter input[type="email"] {
    width: 100px;
    font-size: 0.95rem;
  }
  .newsletter button {
    font-size: 0.95rem;
  }
}




/*=================================================================================================
 **************************************Responsive Styles*******************************************
 *================================================================================================*/

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
 

    .hero {
        height: auto; 
        min-height: 550px; 
    }
    .hero-content {
       max-width: 90%; 
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero h2 {
        font-size: 1.3rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001; 
    }
      .whatsapp-button{
        display: block  ;
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-size: 44px;
        z-index: 9999;
        
    }   
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50vw !important;
        max-width: 300px !important;
        height: 100vh;
        background-color:var(--dark-background);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0; 
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu li.shop-btn { 
        margin-top: 30px; 
    }
    
    .nav-menu .btn-shop {
        padding: 12px 25px; 
        font-size: 1rem;
    }
    
    .hero {
        min-height: 450px; 
        height: auto; 
        padding-top: 120px; 
        padding-bottom: 60px;
    }
    
    .hero .hero-container-overlay { 
        padding: 0 15px;
    }

    .hero-content {
        max-width: 100%; 
        text-align: center; 
    }

    .hero h1 {
        font-size: 2rem;
    }
     .hero h1 span {
        display: inline; 
    }
    .hero h2 {
        font-size: 1.2rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column; 
        align-items: center; 
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px; 
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: auto;
        bottom: 20px; 
    }
    .hero-swiper .swiper-button-next {
        right: 10px;
    }
    .hero-swiper .swiper-button-prev {
        left: 10px;
    }

    .hero-swiper .swiper-pagination {
        bottom: 25px !important; 
    }
    
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 1.2rem;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr; 
    }
    
    .contact-info {
        grid-template-columns: 1fr; 
    }
    
    .shop-cta {
        padding: 30px 20px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .expertise-highlights-grid {
        grid-template-columns: 1fr; 
    }
    
    footer {
        padding: 60px 0 20px; 
    }
    
    .footer .section-header {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center; 
    }
    
    .footer-bottom-links {
        flex-direction: column; 
    }
    
    /* .social-icons {
    } */
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
      .whatsapp-button{
        display: block  ;
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-size: 44px;
        z-index: 9999;
        
    } 


    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .services, 
    .expertise, 
    .about, 
    .products, 
    .contact {
        padding: 60px 0;
    }

    .hero {
        padding-top: 100px; 
        padding-bottom: 40px;
        min-height: 400px;
    }
     .hero h1 {
        font-size: 1.7rem;
    }
    .hero h2 {
        font-size: 1.1rem;
    }
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .contact-content,
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .highlight-item { 
        padding: 25px 20px;
    }
    
    .highlight-item i {
        font-size: 2.2rem;
    }
    
    .highlight-item h4 {
        font-size: 1.15rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }

    .footer-logo {
        margin: 20px 0; 
    }
}

/*====================================================================================================
***************************************responsive Styles End******************************************
*====================================================================================================*/

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
 

    .hero {
        height: auto; 
        min-height: 550px; 
    }
    .hero-content {
       max-width: 90%; 
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero h2 {
        font-size: 1.3rem;
    }
    .hero p {
        font-size: 1rem;
    }
}



@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001; 
    }
      .whatsapp-button{
        display: block  ;
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-size: 44px;
        z-index: 9999;
        
    }   
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70vw !important;
        max-width: 320px !important;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0; 
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu li.shop-btn { 
        margin-top: 30px; 
    }
    
    .nav-menu .btn-shop {
        padding: 12px 25px; 
        font-size: 1rem;
    }
    
    .hero {
        min-height: 450px; 
        height: auto; 
        padding-top: 120px; 
        padding-bottom: 60px;
    }
    
    .hero .hero-container-overlay { 
        padding: 0 15px;
    }

    .hero-content {
        max-width: 100%; 
        text-align: center; 
    }

    .hero h1 {
        font-size: 2rem;
    }
     .hero h1 span {
        display: inline; 
    }
    .hero h2 {
        font-size: 1.2rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column; 
        align-items: center; 
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px; 
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: auto;
        bottom: 20px; 
    }
    .hero-swiper .swiper-button-next {
        right: 10px;
    }
    .hero-swiper .swiper-button-prev {
        left: 10px;
    }

    .hero-swiper .swiper-pagination {
        bottom: 25px !important; 
    }
    
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 1.2rem;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr; 
    }
    
    .contact-info {
        grid-template-columns: 1fr; 
    }
    
    .shop-cta {
        padding: 30px 20px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .expertise-highlights-grid {
        grid-template-columns: 1fr; 
    }
}






/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #f8f9fa;
    box-shadow: 0 2px 10px rgba(41, 171, 226, 0.1);
    transition: all var(--transition-speed) ease;
    /* padding is handled by JS on scroll */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; /* Default padding, JS might modify this */
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: #495057;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #29ABE2;
    transition: all var(--transition-speed) ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #29ABE2;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #29ABE2;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #29ABE2;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #495057;
    transition: all 0.3s ease;
}

.nav-menu .btn-shop { 
    background-color: #29ABE2;
    color: #ffffff;  
    padding: 9px 18px; 
    border-radius: 5px;
    font-weight: 600;
    display: inline-flex; 
    align-items: center;
    line-height: 1.2; 
    transition: all var(--transition-speed) ease;
}

.nav-menu .btn-shop:hover {
    background-color: #1f8ab8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(41, 171, 226, 0.3); 
}

.nav-menu .btn-shop:hover::after { 
    width: 0;
}

.nav-menu .btn-shop i {
    margin-left: 8px; 
    font-size: 0.9em; 
}

.nav-menu li.shop-btn {
    /* No specific styles needed if 'a' tag is styled correctly */
    /* margin-left is handled by .nav-menu li */
}

/* ================================================================================================================
**************************************************True Css********************************************************
================================================================================================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60vw !important;
        max-width: 310px !important;
        height: 100vh;
        background-color:var(--dark-background);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-menu a {
        color: #ffffff;
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #29ABE2;
        padding-left: 10px;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu .btn-shop {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 12px 20px;
        font-size: 1.1rem;
        background-color: #29ABE2;
        color: #ffffff;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .btn-shop:hover {
        background-color: #1f8ab8;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(41, 171, 226, 0.2);
    }
    
    .nav-menu .btn-shop i {
        margin-left: 8px;
    }
}