:root {
  --primary-color: #04cda3;   /* Mint Green */
  --hovered-primary-color:#019e7c; 
  --secondary-color: rgb(24, 38, 49); /* Purple */
  --light-secondary-color: #eeeeee; /* light purple */
  --light-primary-color: #d5eee9; /* light cyan */
  --dark-color: #182631;      /* Dark Text */
  --light-color: #e6e6e6;     /* Light Background */
}
body{
    margin:0;
    font-family: 'Cairo', sans-serif;
    /* background-color: var(--light-color); */
    background: rgb(247, 247, 247);
}
/*--------------------------------------------------- Header------------------------------------------------*/
/*--------------------------------------------------- Top Bar------------------------------------------------*/
.top-bar{
    width: 100%;
    display: flex;
    background:rgb(83, 165, 77);
    justify-content: space-between;
    /* transform: translateX(-30px); */
    align-items: center;
    /* padding: 2px 10px; */
    height:30px;
    color:white;
    font-size:18px;
    display: none;
    
}
.top-bar > p:nth-child(1){
    padding:0 20px;
}
.top-bar > div:nth-child(2){
    padding:0 10px;
    display: flex;
    height: 100%;
    width:145px;
    justify-content: space-around;
    align-items: center;
}
/*--------------------------------------------------- Nav ------------------------------------------------*/
.dropBtn{
  
  background:rgba(235, 245, 232, 0.5);
  z-index: 1;
  background:rgba(26, 25, 25, 0.767);
  overflow: visible;

 position:relative;
    right:5% !important;
  display:none;
}
.btnInv{
  /*active button contour*/
  
  background:var(--dark-color);
}
.dropBtn span.spanInv{
  /*active span bg */
  background:var(--primary-color)!important;
  
}
.dropBtn span{
  /*inactive span bg */
  display: block;
  width:30px;
  height:5px;
  margin:5px;
  
  background:rgba(3, 58, 10, 0.925);
  background:var(--hovered-primary-color) !important;
}
.dropDown {
  position: fixed;
  top: 70px;
  right: 0;
  z-index: 3;
  height: 100%;
  width: 50%;

  background: linear-gradient(315deg, var(--primary-color) , var(--dark-color)70%  );
  /* backdrop-filter: blur(120px); */
  /* background:var(--dark-color); */

  display: none; /* Hides it initially */
  flex-direction: column;
  animation: menuAnimation 500ms ease;
}
.dropDown a{
  text-align: center;
  padding:20px;
  font-size: 18px;
  color:white;
  font-family:Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.hide{
  animation : menuAnimation1 500ms forwards;
 
}

.trackerHide {
  animation: trackerAnimation1 500ms forwards;
}

@keyframes trackerAnimation1 {
  0% {
    height: 200px; /* or whatever actual height */
    background: green;
  }
  100% {
    height: 0;
    display: none;
  }
}

@keyframes menuAnimation{
  0%{
    width:0%;
  }
  100%{
    width:50%;
  }}
  @keyframes menuAnimation1{
    0%{
      width:50%;
    }
    100%{
      width:0%;
      
    }}
#toggleTracker2 i{
  color:cyan;
}

/*--------------------------------------------------- Nav tracker ------------------------------------------------*/

.trackerDropDown img {
  width: auto;
  height: 8rem;
}

.trackerDropDown div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  background-color: rgb(50, 71, 87);
}

.trackerDropDown > div > input {
  height: 2.05rem;
  width: 40%;
  text-align: center;
}

.trackerDropDown > div > input:focus {
  border: #86ffe5 solid 2px;
  outline: none;
}

.trackerDropDown > div > img {
  width: 20px;
  height: 19px;
  background: var(--primary-color);
  padding: 10px 25px;
  margin: 0 30px;
  border-radius: 5px;
  transform: translateX(-2rem);
}

.trackerDropDown > div > img:hover {
  background: var(--hovered-primary-color);
}

.trackerDropDown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  will-change: max-height;
}

.trackerDropDown.show {
  max-height: 100vh;
}


/*--------------------------------------------------- Nav ------------------------------------------------*/
header nav{
    width:100%;
    background:var(--secondary-color);
    padding:10px 0;
    display:flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.61) 2px 1px 4px;
}
/* nav .links i {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
} */
button{
  cursor: pointer;
}
header nav img#home-logo{
    width:3rem;
    height:3rem;
    transform: translateX(-1rem);
    border-left:solid 2px cyan;
    border-bottom:solid 2px cyan;
    border-right:solid 2px cyan;
    padding: 10px 12px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 10px 30px rgba(4, 205, 163, 0.4);
    cursor: pointer;
}
header nav>div>img{
    width: 20px;
    height: 25px;
    
    background: var(--primary-color);
    padding: 10px 25px;
    margin: 0 30px;
    
    border-radius: 5px;
    color: white;
    transform: translateX(40px);
}
header nav>div>img:hover{
    
    
    background: var(--hovered-primary-color);
    
}

nav .links {
  font-weight:500;
    width:30%;
    display:flex;
    justify-content: space-between;
    align-items: center;
   /*  margin-right: 5%; */
    z-index:2;
    gap:1rem;
    transform: translateX(3rem);
}
nav .links a>i {
    padding: 0 5px;
}
nav .links a{
    color:var(--light-color);
    text-decoration: none;
}
#loginLink:nth-child(2) {
  border: 2px solid var(--primary-color);
  padding:8px;
  border-radius:5px;
  
}
#toggleTracker{
  color:white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap:5px;
}
#cart-link{
  color:white;

}
header nav a:hover{
    opacity:0.5;
}
nav>div:nth-child(2) {
    width:40%;
    height:45px;
    border-radius:5px;
    display:flex;
    justify-content: space-around;
    align-items: center;
    border: none;
    background:white;
    box-shadow: rgba(0, 0, 0, 0.26) 2px 1px 4px;
    text-align: center;
}
nav>div:nth-child(2) input{
    width:90%;
    height:20px;
    border:none;
    background:white;
    outline: none;
    text-align: right;
}
body > header > nav > div:nth-child(2) > input[type=text]{
    transform: translateX(50px);
}
/* .dropBtn{
  
    background:rgba(1, 16, 44, 0.678);
    z-index: 1;
    position:absolute;
    top:0;
    right:0 !important;
    display:none;
  }
  .dropBtn span{
    display: block;
    width:30px;
    height:5px;
    margin:5px;
    
    background:rgba(182, 232, 252, 0.925);
  }
  .hide{
    
    display:flex !important;
   
  }
  .btnInv{
    background:rgba(204, 232, 243, 0.925);
    color:rgba(1, 16, 44, 0.678);
  }
  .spanInv{
    background:rgba(1, 16, 44, 0.678)!important;
  } */

  .user{
    display: flex;
    gap:5px;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    /* width:20rem; */
    /* background-color: pink; */
}
.user div{
    display: flex;
    flex-direction: column;
    /* gap:5px; */
    justify-content: center;
    align-items: center;
}
.user img {
  height:2.2rem;
}
.user p{
  width:70px;
color:white;
font-size: 0.7rem;
margin: 0;
font-weight: 600;
text-align: left;
}
.user span{
    width:70px;
color:cyan;
font-size: 0.6rem;
margin:0;
text-align: left;
font-weight: 700;
}
nav .commands{
  background: transparent;
  display: flex;
  /* gap:1rem; */
  margin:0;
  justify-content: space-evenly;
  align-items: center;
}
#cart-link {
  display: flex;
    gap:5px;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}
#cart-link img{
  /* transform: translateY(0.4rem); */
  /* background-color: pink;; */
  height:2rem;
}
#toggleTracker i {
  /* height:2rem; */
  font-size: 1.6rem;
  transform: translateY(0.2rem);
  font-weight: 700 !important;
  color:cyan;
}
 /*------------------------------------------------ Second nev ----------------------------------------------*/
 .second-nav{
    width:100%;
    background:rgb(255, 255, 255);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.26) 2px 1px 4px;
    display:none;
 }
 .second-nav a{
    align-items: center;
    border-bottom: 3px solid transparent;
    border-top: 3px solid white;
    color: #333;
    cursor: pointer;
    display: flex;
    flex-basis: unset;
    font-family: Montserrat,sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    height: 64px;
    justify-content: center;
    line-height: 17px;
    margin: 0 0.5px;
    padding: 0 15px;
    text-align: center;
    transition: all .4s ease;
 }
 .second-nav a:hover{
    border-top: 3px solid rgb(44, 68, 204);
    background-color:rgba(44, 68, 204, 0.158) ;
    /* border-top: 3px solid white;
    background-color:rgba(255, 255, 255, 0.445) ; */
 }
 .second-nav a.all{
   color:rgb(51, 128, 0);
    /* border-top: 3px solid white;
    background-color:rgba(255, 255, 255, 0.445) ; */
 }

 /* -------------------------- styling the benefits moving banner------------------------------- */
.wrapper1{
    margin: 0;
    padding: 0;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgb(255, 246, 248); */
    position: relative;
    width: 100%;
    margin: 0.5rem 0rem;
    
}
/* .wrapper1::after{
    position:absolute;
    content: "";
    top:0;
    right:0;
    background:linear-gradient(to right, transparent,rgba(0, 128, 0, 0.507)70%);
    width:50%;
    height: 100%;
} */
.slider{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .slides{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
  }
  
  .slides input{
    display: none;
  }
  
  .slide{
    width: 100%;
    transition: 2s;
  }
  
  .slide img{
    width: 100%;
    height: 100%;
  }
  
  /*css for manual slide navigation*/
  
  .navigation-manual{
    position: absolute;
    width: 800px;
    margin-top: 420px;
    display: flex;
    justify-content: center;
    margin-left:160px;
    display:none;
  }
  
  .manual-btn{
    border: 2px solid #40D3DC;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
    display:none;
  }
  
  .manual-btn:not(:last-child){
    margin-right: 40px;
  }
  
  .manual-btn:hover{
    background: #40D3DC;
  }
  
  #radio1:checked ~ .first{
    margin-left: 0;
  }
  
  #radio2:checked ~ .first{
    margin-left: -20%;
  }
  
  #radio3:checked ~ .first{
    margin-left: -40%;
  }
  
  #radio4:checked ~ .first{
    margin-left: -60%;
  }
  
  /*css for automatic navigation*/
  
  .navigation-auto{
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 420px;
    margin-left:160px;
    display:none;
  }
  
  .navigation-auto div{
    border: 2px solid #40D3DC;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
  }
  
  .navigation-auto div:not(:last-child){
    margin-right: 40px;
  }
  
  #radio1:checked ~ .navigation-auto .auto-btn1{
    background: #40D3DC;
  }
  
  #radio2:checked ~ .navigation-auto .auto-btn2{
    background: #40D3DC;
  }
  
  #radio3:checked ~ .navigation-auto .auto-btn3{
    background: #40D3DC;
  }
  
  #radio4:checked ~ .navigation-auto .auto-btn4{
    background: #40D3DC;
  }
/* ---------------------------------------------styling the values------------------------------------------ */
.values{
    width:100%;
    display : none ;
  }
.values img{
    width: 100%;
  }
/* -------------------------------------------styling the Models--------------------------------------------- */
  section.models{
    margin:30px 0;
    margin-top:0;
    position: relative;
    /* background:pink; */
    width:100%;
    height:100vh;
    display:none;
    
  }
  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    
    
    70% {
      transform: translateY(5px);
    }
    100% {
      transform: translateY(0);
    }
  }
  section.models img{
    width:30px;
    height:30px;
    padding:5px;
    border-radius: 50%;
    background-color: rgb(217, 161, 255);
    animation: bounce 1s ease infinite;
  }
  section.models img:hover{
    width:30px;
    height:30px;
    padding:5px;
    border-radius: 50%;
    background-color: rgb(149, 255, 176);
    animation-play-state: paused;
  }
  #leftButton{
    position:absolute;
    top:50%;
    left:2%;
    z-index: 10;
    
    
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  #rightButton{
    position:absolute;
    top:50%;
    right:2%;
    z-index: 10;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    
  }
  #three-canvas {
    position: relative;
    top:0;
    left:2%;
   /*  transform:translate(-50%,50%); */
    width: 90%; 
    height:90%;
    display:none;
    background:lightblue;
    cursor: pointer;
   
  }
  
  
  #cart-link{
    position: relative;
  }
  .cart-count {
    position: absolute;
    top: -10px;
    right: -15px;
    width: 19px;
    height: 20px;
    background-color: rgb(255, 66, 66);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 0.9rem;
    display: none; /* Hidden by default */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  #tooltip {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -100%);
}

.models:hover #tooltip {
    display: block;
}

.models {
    position: relative;
}
/* -------------------------------------------styling the steps--------------------------------------------- */
.process{
    width:100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    column-gap: 30px;
    align-items: center;
    
}
.process .proc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;/* 
    width:15%; */
}
.process .proc img{
    width:180px;
    height:150px;
   /*  align-self: center; */
}
.process .proc i{
    margin:20px 0;
    font-size: 20px;
    position: relative;
    color: rgb(70, 70, 70);
}
.process .proc:nth-child(1) i:after{
    position:absolute;
    content:"";
    top:8px;
    left:1;
    width:440px;
    height:2px;
    background-color: rgb(161, 161, 161);
}
.process .proc:nth-child(2) i:after{
    position:absolute;
    content:"";
    top:8px;
    left:1;
    width:440px;
    height:2px;
    background-color: rgb(161, 161, 161);
}
.process .proc p,h3{
    margin: 2px 0;
}
section h1{
    text-align: center;
    font-size: 2.2rem;
    
}
.partners{
  display:none;
}
.partners h1{
    text-align: center;
    margin:5px 0;
    margin-top: 30px;
    }
    
    @keyframes slide {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-100%);
        }
      }
      
      .logos {
        overflow: hidden;
        padding: 60px 0;
        background: rgb(255, 255, 255);
        white-space: nowrap;
        position: relative;
      }
      
      .logos:before,
      .logos:after {
        position: absolute;
        top: 0;
        width: 250px;
        height: 100%;
        content: "";
        z-index: 2;
      }
      
      .logos:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
      }
      
      .logos:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
      }
      
      .logos:hover .logos-slide {
        animation-play-state: paused;
      }
      
      .logos-slide {
        display: inline-block;
        animation: 10s slide infinite linear;
      }
      
      .logos-slide img {
        height: 30px;
        margin: 0 30px;
      }

/* 
  --primary-color: #04cda3;  
  --hovered-primary-color:#019e7c; 
  --secondary-color: rgb(24, 38, 49); 
  --light-secondary-color: #eeeeee; 
  --light-primary-color: #d5eee9; 
  --dark-color: #182631;      
  --light-color: #e6e6e6;     
*/
 /* 
  Color Palette Variables
  --primary-color: #04cda3;  
  --hovered-primary-color:#019e7c; 
  --secondary-color: rgb(24, 38, 49); 
  --light-secondary-color: #eeeeee; 
  --light-primary-color: #d5eee9; 
  --dark-color: #182631;      
  --light-color: #e6e6e6;     
*/

:root {
  --primary-color: #04cda3;
  --hovered-primary-color: #019e7c;
  --secondary-color: rgb(24, 38, 49);
  --light-secondary-color: #eeeeee;
  --light-primary-color: #d5eee9;
  --dark-color: #182631;
  --light-color: #e6e6e6;
  --transition-smooth: 0.5s ;
}

/* Gallery Sections Base */
.gallery, .gallery2 {
  background: var(--dark-color);
  width: 100%;
  position: relative;
  /* padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem); */
  box-sizing: border-box;
}

.gallery {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.gallery2 {
  /* padding-top: 1rem; */
  background: var(--dark-color);
 /*  border-top: 1px solid rgba(4, 205, 163, 0.1); */
 padding-bottom: 3rem;
 /* margin-bottom: 1rem; */
}

/* Title Styling */
.gallery h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  /* margin: 0 0 3rem 0; */
  color: var(--light-color);
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  padding-top: 1rem;
  background: linear-gradient(135deg, var(--primary-color), #2de8c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(4, 205, 163, 0.2);
}

.gallery h1::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #2de8c9);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(4, 205, 163, 0.4);
}

/* Slider Container */
.slider-container {
  position: relative;
  max-width: 1400px;
  /* margin: 2rem auto; */
  padding: 0 80px;
  background: var(--dark-color);
}

/* Arrow Buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(4, 205, 163, 0.2);
  border-radius: 50%;
  color: var(--light-primary-color);
  font-size: 1.8rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  user-select: none;
}

.arrow:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--hovered-primary-color));
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(4, 205, 163, 0.4);
  color: white;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

/* Slider Track */
.slider1 {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
  padding: 2rem 1rem;
  margin: 0 -1rem;
  background: var(--dark-color);
}

.slider1::-webkit-scrollbar {
  height: 6px;
}

.slider1::-webkit-scrollbar-track {
  background: rgba(4, 205, 163, 0.05);
  border-radius: 10px;
}

.slider1::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--primary-color), var(--hovered-primary-color));
  border-radius: 10px;
}

/* Panel Items */
.slider1 .panel {
  flex: 0 0 auto;
  width: 320px;
  height: 420px;
  background: linear-gradient(145deg, 
              color-mix(in srgb, var(--secondary-color) 90%, black),
              color-mix(in srgb, var(--secondary-color) 80%, black));
  background:no-repeat;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(4, 205, 163, 0.15);
  box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(213, 238, 233, 0.05);
  cursor: pointer;
  background-position: center;
  background-size: cover ;
  transform-origin: center bottom;
}

/* Gradient overlay for better text readability */
.slider1 .panel::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, 
      rgba(24, 38, 49, 0.95) 0%,
      rgba(24, 38, 49, 0.8) 30%,
      rgba(24, 38, 49, 0.5) 60%,
      transparent 100%);
  z-index: 1;
  opacity: 0.8;
  transition: all var(--transition-smooth);
}

/* Shine effect on hover */
.slider1 .panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(213, 238, 233, 0.1),
      transparent
  );
  transition: left 0.8s ease;
  z-index: 2;
}

/* Panel h3 - Elegant positioning and styling */
.panel h3 {
  color: var(--light-primary-color);
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--light-primary-color), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  bottom: 2rem;
  left: 1.8rem;
  right: 1.8rem;
  z-index: 3;
  padding: 0.5rem 0;
  opacity: 1;
  transform: translateY(0);
  transition: all var(--transition-smooth);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.3px;
}

/* Add subtitle/description element */
.panel .panel-subtitle {
  position: absolute;
  bottom: 0.8rem;
  left: 1.8rem;
  right: 1.8rem;
  color: rgba(213, 238, 233, 0.8);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  z-index: 3;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-smooth) 0.1s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Category count badge */
.panel .panel-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--hovered-primary-color));
  color: var(--light-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all var(--transition-smooth) 0.2s;
  box-shadow: 0 4px 15px rgba(4, 205, 163, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Hover Effects */
.slider1 .panel:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(4, 205, 163, 0.4);
  box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.5),
      0 0 60px rgba(4, 205, 163, 0.25),
      0 0 0 2px rgba(4, 205, 163, 0.2),
      inset 0 1px 0 rgba(213, 238, 233, 0.1);
}

.slider1 .panel:hover::before {
  opacity: 0.95;
  height: 100%;
  background: linear-gradient(to top, 
      rgba(24, 38, 49, 0.98) 0%,
      rgba(24, 38, 49, 0.9) 30%,
      rgba(24, 38, 49, 0.7) 60%,
      rgba(24, 38, 49, 0.4) 100%);
}

.slider1 .panel:hover::after {
  left: 100%;
}

.slider1 .panel:hover h3 {
  background: linear-gradient(135deg, var(--primary-color), #2de8c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-20px);
  bottom: 3.5rem;
  font-size: 2rem;
  text-shadow: 0 4px 15px rgba(4, 205, 163, 0.3);
}

.slider1 .panel:hover .panel-subtitle {
  opacity: 1;
  transform: translateY(0);
  color: var(--light-primary-color);
}

.slider1 .panel:hover .panel-badge {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  box-shadow: 0 6px 20px rgba(4, 205, 163, 0.4);
}

/* Background image zoom effect */
.slider1 .panel {
  background-position: center;
  background-size: cover;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider1 .panel:hover {
  background-size: 110%;
}

/* Active state with glow effect */
.slider1 .panel.active {
  border-color: rgba(4, 205, 163, 0.6);
  box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.5),
      0 0 70px rgba(4, 205, 163, 0.3),
      0 0 0 3px rgba(4, 205, 163, 0.3),
      inset 0 1px 0 rgba(213, 238, 233, 0.1);
  animation: panelGlow 3s infinite;
}

@keyframes panelGlow {
  0%, 100% {
      box-shadow: 
          0 25px 50px rgba(0, 0, 0, 0.5),
          0 0 70px rgba(4, 205, 163, 0.3),
          0 0 0 3px rgba(4, 205, 163, 0.3),
          inset 0 1px 0 rgba(213, 238, 233, 0.1);
  }
  50% {
      box-shadow: 
          0 25px 50px rgba(0, 0, 0, 0.5),
          0 0 90px rgba(4, 205, 163, 0.4),
          0 0 0 3px rgba(4, 205, 163, 0.4),
          inset 0 1px 0 rgba(213, 238, 233, 0.1);
  }
}

/* View More Link */
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 3rem auto 0;
  padding: 1.1rem 2.8rem;
  background: linear-gradient(135deg, var(--primary-color), var(--hovered-primary-color));
  color: var(--light-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(4, 205, 163, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.2), 
              transparent);
  transition: left 0.7s ease;
}

.view-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(4, 205, 163, 0.4);
  gap: 1.2rem;
  background: linear-gradient(135deg, var(--hovered-primary-color), var(--primary-color));
  border-color: rgba(255, 255, 255, 0.2);
}

.view-more:hover::before {
  left: 100%;
}

.view-more::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.view-more:hover::after {
  transform: translateX(5px);
}

/* Update the custom view-more link positioning */
a.view-more, .view-more {
  display: block;
  margin: 3rem auto 0;
  text-align: center;
  text-decoration: none;
  color: var(--light-color);
  font-weight: 700;
  width: fit-content;
  position: relative;
  left: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .slider-container {
      padding: 0 70px;
  }
  
  .slider1 .panel {
      width: 280px;
      height: 380px;
  }
}

@media (max-width: 992px) {
  .slider-container {
      padding: 0 60px;
  }
  
  .arrow {
      width: 52px;
      height: 52px;
      font-size: 1.6rem;
  }
  
  .slider1 .panel {
      width: 260px;
      height: 360px;
  }
}

@media (max-width: 768px) {
  .gallery, .gallery2 {
      padding: 2rem 1rem;
  }
  
  .slider-container {
      padding: 0 50px;
      margin: 1rem auto;
  }
  
  .slider1 {
      gap: 1.5rem;
      padding: 1.5rem 0.5rem;
  }
  
  .slider1 .panel {
      width: 240px;
      height: 340px;
  }
  
  .panel h3 {
      font-size: 1.5rem;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
  }
  
  .slider1 .panel:hover h3 {
      font-size: 1.7rem;
      bottom: 3rem;
  }
  
  .panel .panel-subtitle {
      left: 1.5rem;
      right: 1.5rem;
      font-size: 0.9rem;
  }
  
  .panel .panel-badge {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
  }
  
  .arrow {
      width: 46px;
      height: 46px;
      font-size: 1.4rem;
  }
  
  .view-more {
      padding: 1rem 2.2rem;
      font-size: 1rem;
      margin: 2rem auto 0;
  }
}

@media (max-width: 576px) {
  .gallery h1 {
      font-size: 2rem;
      margin-bottom: 2rem;
  }
  
  .slider-container {
      padding: 0 40px;
  }
  
  .slider1 {
      gap: 1rem;
  }
  
  .slider1 .panel {
      width: 220px;
      height: 320px;
  }
  
  .panel h3 {
      font-size: 1.4rem;
      bottom: 1.2rem;
      left: 1.2rem;
      right: 1.2rem;
  }
  
  .slider1 .panel:hover h3 {
      font-size: 1.6rem;
      bottom: 2.5rem;
  }
  
  .panel .panel-subtitle {
      left: 1.2rem;
      right: 1.2rem;
      font-size: 0.85rem;
  }
  
  .panel .panel-badge {
      width: 30px;
      height: 30px;
      font-size: 0.8rem;
      top: 1rem;
      right: 1rem;
  }
  
  .arrow {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
  }
  
  .view-more {
      width: 90%;
      max-width: 280px;
      justify-content: center;
  }
}

/* Animation for new panels */
@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(30px) scale(0.95);
  }
  to {
      opacity: 1;
      transform: translateX(0) scale(1);
  }
}

.slider1 .panel {
  animation: slideIn 0.6s ease-in forwards;
}

/* Optional: Add decorative corner accents to panels */
/* .panel::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
  top: 15px;
  left: 15px;
  opacity: 0.3;
  z-index: 1;
}
 */
/* .panel::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  bottom: 15px;
  right: 15px;
  opacity: 0.3;
  z-index: 1;
} */
    
    a.view-more, .view-more {
        display: block;
        margin-top: 20px;
        
        text-align: right;
        text-decoration: none;
        color: #333;
        font-weight: bold;
        align-self: center;
        text-decoration: none;
        color: white;
        position: relative;
        /* left: -45%; *//*
        top: -1rem; */
    }
    /* .slider1 {
      padding-right: 200px; 
      box-sizing: content-box; 
    } */
    .slider1-padding-fix {
      padding-right: 250px !important;
      box-sizing: content-box !important;
  }

  
    /*  #panel-1{ background-image: url("../images/customers/")}
    #panel-2{ background-image: url("../images/customers/71yKFs3ZtoL._AC_UF350,350_QL80_.jpg")}
    #panel-3{ background-image: url("../images/customers/il_fullxfull.4202309641_m2fa.jpg")}
    #panel-4{ background-image: url("../images/customers/48521528638\ \(1\).png")}
    #panel-5{ background-image: url("../images/customers/istockphoto-825118608-612x612.png")}
    #panel-6{ background-image: url("../images/customers/téléchargement.png")}
    #panel-7{ background-image: url("../images/customers/ssrco\,tote\,cotton\,canvas_creme\,lifestyle\,tall_portrait\,750x1000-bg\,f8f8f8.1.jpg")}  */

    footer{
      /* margin-top:50px; */
      background:var(--light-color);
      color:#182631;
      width:100%;
      display:grid;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
      justify-content: center;
      align-items: center;
  }
  footer .logo img{
    width:250px;
    height:189px;
  }
  footer .footerLinks{
      display:flex;
      flex-direction: column;
      height:150px;
      
      
  }
  footer .footerLinks:nth-child(2){
    animation: upFade 0.5s  linear  forwards;
    animation-play-state: paused;
  }
  footer .footerLinks:nth-child(3){
    animation: upFade 0.6s  linear  forwards;
    animation-play-state: paused;
  }
  footer .footerLinks:nth-child(4){
    animation: upFade 0.7s  linear  forwards;
    animation-play-state: paused;
  }
  footer .footerLinks:nth-child(5){
    animation: upFade 0.8s  linear  forwards;
    animation-play-state: paused;
  }
  
  footer .footerLinks h4{
      margin-bottom: 5px;
  }
  footer .footerLinks a{
      text-decoration: none;
      color:black;
      cursor: pointer;
  }
   .end{
      width:100% !important;
      text-align: center;
      background:var(--secondary-color);
      color:white;
  }
  .phone{
    width:370px;
    height:150px;
    position:fixed;
    top:35%;
    left:50%;
    transform:translate(-50%,50%);
    background:rgb(245, 245, 245);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display:none;
    box-shadow: rgba(0, 0, 0, 0.514) 0px 10px 20px;
    border-radius: 12px;
  }
/*---------------------------------------------------- Responsivness -----------------------------------------------*/
@media screen and (max-width:1400px){
  .dropDown{
    display:none;
  }
}

/* Extra Small Devices (up to 360px) */
@media (max-width: 360px) {
  
}

/* Small Devices (361px to 480px) */
@media (min-width: 351px) and (max-width: 490px) {
  body{
    overflow-x: hidden;
  }
  body > header > nav > div.links{
    width:30%;
    gap:5px;
  }
  .gallery{
    overflow-x: hidden;
  }
  
  .wrapper1{
    height:60vh !important;
    background:rgb(250, 250, 250);
    
  }
  header .slider{
      width:90%;
      height:60%;
      margin-top: 5rem !important;
      
  }
  header .slider .slides{
    height:100%;
    
  }
  header{
    margin-bottom: 0;
    background: rgb(210, 255, 210);
    
  }
  #slides-container > div{
    max-width: 100%;
    height: auto;
  }
  header i#slides-container > div img{
    max-width:80%;
    object-fit: cover;
    
  }
  nav{
    position: fixed;
    z-index: 5;
    
  }
  nav .links{
    display:none;
  }
  nav  img#home-logo{
    width:1.7rem !important;
    height:1.8rem !important;
  }
  nav>div:nth-child(2){
    width:55%;
  }
  nav>div:nth-child(2) img{
    width:20px !important;
  }
  nav .dropBtn{
    /* margin-right:200px; */
    display: block;
    transform: translateX(2rem);

  }
  .trackerDropDown{
    position: relative;
    z-index: 2;
    transform: translateY(4.4rem);
  }
  .container{
    overflow-x: hidden;
    height:60vh;
    background:contain;
  }
  .panel > h3{
    font-size: 1.1rem !important;
    line-height: 15px;
    left:-0.5rem;
   background:transparent;
   background-size: contain;
   background-position: center ;
   color:rgb(11, 11, 77);
    
    
  }
  .panel{
    width:60% !important;
    /* background:green; */
    margin:5px;
    height:50vh;
    background: transparent ;
    background-size:cover;
    background-position:  center;
    background-repeat:no-repeat;
    

  }
  
.container:has(.panel:hover) .panel h3 {
  opacity: 0;
}


.container:has(.panel:hover) .panel:hover h3 {
  opacity: 1;
}

  .panel:hover{
    flex: 20;
    opacity: 1;
  }
  
  
   footer{
  margin-top: 0;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr)) ;
    justify-content: center;
    align-items: center;
    text-align: center;
    height:auto;
}
  footer div {
      margin-top:50px;
  }
  footer div:last-child{
    display:none;
  }
 

  

}

/* Medium-Small Devices (481px to 579px) */
@media (min-width: 481px) and (max-width: 579px) {
  body{
    overflow-x: hidden;
  }
  body > header > nav > div.links{
    width:30%;
    gap:5px;
  }
  .gallery{
    overflow-x: hidden;
  }
  
  .wrapper1{
    height:60vh !important;
    background:rgb(250, 250, 250);
    
  }
  header .slider{
      width:90%;
      height:60%;
      margin-top: 5rem !important;
      
  }
  header .slider .slides{
    height:100%;
    
  }
  header{
    margin-bottom: 0;
    background: rgb(210, 255, 210);
    
  }
  #slides-container > div{
    max-width: 100%;
    height: auto;
  }
  header i#slides-container > div img{
    max-width:80%;
    object-fit: cover;
    
  }
  nav{
    position: fixed;
    z-index: 5;
    
  }
  nav .links{
    display:none;
  }
  nav  img{
    width:5rem !important;
    height:5rem;
  }
  nav>div:nth-child(2){
    width:55%;
  }
  nav>div:nth-child(2) img{
    width:20px !important;
  }
  nav .dropBtn{
    /* margin-right:200px; */
    display: block;
    transform: translateX(2rem);

  }
  .container{
    overflow-x: hidden;
    height:60vh;
    background:contain;
  }
  .panel > h3{
    font-size: 1.1rem !important;
    line-height: 15px;
    left:-0.5rem;
   background:transparent;
   background-size: contain;
   background-position: center ;
   color:rgb(11, 11, 77);
    
    
  }
  .panel{
    width:60% !important;
    /* background:green; */
    margin:5px;
    height:50vh;
    background: transparent ;
    background-size:cover;
    background-position:  center;
    background-repeat:no-repeat;
    

  }
  
.container:has(.panel:hover) .panel h3 {
  opacity: 0;
}


.container:has(.panel:hover) .panel:hover h3 {
  opacity: 1;
}

  .panel:hover{
    flex: 20;
    opacity: 1;
  }
  
  
   footer{
  margin-top: 0;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr)) ;
    justify-content: center;
    align-items: center;
    text-align: center;
    height:auto;
}
  footer div {
      margin-top:50px;
  }
  footer div:last-child{
    display:none;
  }
 

 

}

/* Medium Devices (580px to 649px) */
@media (min-width: 490px) and (max-width: 579px) {
  body{
    overflow-x: hidden;
  }
  body > header > nav > div.links{
    width:30%;
    gap:5px;
  }
  .gallery{
    overflow-x: hidden;
  }
  
  .wrapper1{
    height:60vh !important;
    background:rgb(250, 250, 250);
    
  }
  header .slider{
      width:90%;
      height:60%;
      margin-top: 5rem !important;
      
  }
  header .slider .slides{
    height:100%;
    
  }
  header{
    margin-bottom: 0;
    background: rgb(210, 255, 210);
    
  }
  #slides-container > div{
    max-width: 100%;
    height: auto;
  }
  header i#slides-container > div img{
    max-width:80%;
    object-fit: cover;
    
  }
  nav{
    position: fixed;
    z-index: 5;
    
  }
  nav .links{
    display:none;
  }
  nav  img{
    width:5rem !important;
    height:5rem;
  }
  nav>div:nth-child(2){
    width:55%;
  }
  nav>div:nth-child(2) img{
    width:20px !important;
  }
  nav .dropBtn{
    /* margin-right:200px; */
    display: block;
    transform: translateX(2rem);

  }
  .container{
    overflow-x: hidden;
    height:60vh;
    background:contain;
  }
  .panel > h3{
    font-size: 1.1rem !important;
    line-height: 15px;
    left:-0.5rem;
   background:transparent;
   background-size: contain;
   background-position: center ;
   color:rgb(11, 11, 77);
    
    
  }
  .panel{
    width:60% !important;
    /* background:green; */
    margin:5px;
    height:50vh;
    background: transparent ;
    background-size:cover;
    background-position:  center;
    background-repeat:no-repeat;
    

  }
  
.container:has(.panel:hover) .panel h3 {
  opacity: 0;
}


.container:has(.panel:hover) .panel:hover h3 {
  opacity: 1;
}

  .panel:hover{
    flex: 20;
    opacity: 1;
  }
  
  
   footer{
  margin-top: 0;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr)) ;
    justify-content: center;
    align-items: center;
    text-align: center;
    height:auto;
}
  footer div {
      margin-top:50px;
  }
  footer div:last-child{
    display:none;
  }
 

  
}

/* Tablets (650px to 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  body{
    overflow-x: hidden;
  }
  body > header > nav > div.links{
        width: 40%;
    gap: 0.8rem;
    text-align: center;
    transform: translateX(1.5rem);
  }
  .cart-count {
    position: absolute;
    top: -10px;
    right: -0.3rem;
    
}
  
  .gallery{
    overflow-x: hidden;
  }
  .container{
    overflow-x: hidden;
    height: 60vh !important;
    /* background-color: aquamarine; */
  }
  .panel > h3{
    font-size: 1.2rem !important;
  }
  .panel{
    width:40% !important;
    /* background:green; */
    margin:5px;
    height:50vh;
    background-size:cover;
    background-repeat:no-repeat;
    background: white scroll no-repeat ;

  }
  
.container:has(.panel:hover) .panel h3 {
  opacity: 0;
}


.container:has(.panel:hover) .panel:hover h3 {
  opacity: 1;
}

  .panel:hover{
    flex: 20;
    opacity: 1;
  }
  
  
  footer{
    margin-top: 0;
      grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) ;
      justify-content: center;
      align-items: center;
      text-align: center;
      height:auto;
  }
    footer div {
        margin-top:50px;
    }
    footer div:last-child{
      display:none;
    }
 

 

  
}


/* Large Devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  .panel > h3{
    font-size: 1.5rem !important;
  }

  body > header > nav > div.links{
    width:30%;
    gap:1rem;
    text-align: center;
  }
  .cart-count {
    position: absolute;
    top: -10px;
    right: -0.4rem;
    
}
.container:has(.panel:hover) .panel h3 {
  opacity: 0;
}


.container:has(.panel:hover) .panel:hover h3 {
  opacity: 1;
}

  .panel:hover{
    flex: 20;
    opacity: 1;
  }
  
}

@media (min-width: 920px) and (max-width: 1024px) {
  .cart-count {
    position: absolute;
    top: -10px;
    right: 0.2rem;
    
}
}

  