
body {
    font-family: Arial, sans-serif;
  } 
  
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background-color: #e3e6f3; 
    box-shadow: 0 5px 15px rgba(0, 0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
.logo {
    right: 80%;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}
.navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}
.navbar li a:hover,
.navbar li a.active{
    color: #088178;
}
.navbar li a.active::after,
.navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background-color: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}
#close {
    display: none;
}
.mobile{
    display: none;
}

#hero img {
    width: 100%;
}

.search-container{
    margin-inline: 1.5rem;
    display: grid;
    place-items: center;
    padding-right: 5px;
    padding-top: 4px;
}
.search {
    position: relative;
    width: 40px;
    height: 40px;
    background-color:#e3e6f3;
    box-shadow: 0 4px 24px hsla(222, 68% , 12%, .1); 
    box-shadow: 1px 3px 4px black;
    border-radius: 4rem;
    padding: 10px;
    overflow: hidden;
  transition: width .5s cubic-bezier(.9 , 0 , .3 , .9);
}
.search__input {
    border: none;
    outline: none;
    width: calc(100% - 64px);
    height: 100%;
    border-radius: 4rem;
    background-color: #e3e6f3;
    padding-left:14px ;
    font-family: Arial, sans-serif;
    font-size:small;
    font-weight: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s;
}
.search__input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 100px #e3e6f3;
}
.search__button {
    width: 32px;
    height: 32px;
    background-color:#e3e6f3;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4px;
    margin: auto;
    display: grid;
    cursor: pointer;
    transition: transform .6s cubic-bezier(.9 , 0 , .3 , 0);
}
.search__icon {
    top: 19%;
    left: 17%;
}
.search__icon,
.search__close{
    color: black;
    font-size: 1.5rem;
    position: absolute;
    transition: opacity .5s cubic-bezier(.9 , 0 , .3, .9);
}
.search__close{
    opacity: 0;
    top: 13%;
    left: 23%;
}
.show-search{
    width: 100%;
}
.show-search .search__input{
    opacity: 1;
    pointer-events: initial;
}
.show-search .search__button{
    transform: rotate(90deg);
}
.show-search .search__icon{
    opacity: 0;
}
.show-search .search__close{
    opacity: 1;

} 



.slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    padding: 20px;
  }
  .slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height:85vh;
    object-fit: cover;
    transition: transform 1s ease-in-out; 
  }
  .slider img:nth-child(1) {
    transform: translateX(0);
  }
  .slider img:nth-child(2) {
    transform: translateX(100%);
  }
  .slider img:nth-child(3) {
    transform: translateX(200%);
  }
  .slider:hover .nav-indicator {
    opacity: 1;
  }
  .nav-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-indicator.show {
    opacity: 1;
  }
  .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .dot:hover {
    background-color: #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  .dot.active {
    background-color: #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }



.section-p1 {
    padding: 40px 80px;
}
.section-m1 {
    margin: 40px 0;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 80px;

}
#feature .fe-box img{
    width: 100%;
    margin-bottom: 10px;
}
#feature .fe-box {
    width: calc(16.66% - 20px);
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0,0,0,0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0px;
}
#feature .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70,62,221,0.1);
}
#feature .fe-box h4{
    background-color:#fddde4;
    display: inline-block;
    padding: 9px 8px 6px 8px ;
    line-height: 1;
    color: #088178;
    border-radius: 4px;
}
#feature .fe-box:nth-child(2) h4{
    background-color: #cdebbc;
}
#feature .fe-box:nth-child(3) h4{
    background-color: #d1e8f2;
}
#feature .fe-box:nth-child(4) h4{
    background-color: #cdd4f8;
}
#feature .fe-box:nth-child(5) h4{
    background-color: #f6dbf6;
}
#feature .fe-box:nth-child(6) h4{
    background-color: #fff2e5;
} 



#product1 .pro-container {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; 
 }
 #product1 h1 {
     font-size: 2.5rem; 
     font-weight: bold; 
     margin-bottom: 20px; 
 }
 #product1 {
     text-align: center;
 }
 #product1 .pro{
     width: 23%;
     min-width: 200px;
     padding: 10px 12px;
     border: 1px solid #cce7de;
     border-radius: 25px;
     cursor: pointer;
     box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
     margin: 15px 0;
     transition: 0.2s ease;
     position: relative;
 }
 #product1 .pro:hover{
     box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
 }
 #product1 .pro img{
     width: 100%;
     border-radius: 20px;
 }
 #product1 .pro .des{
     text-align: start;
     padding: 10px 0;
 }
 #product1 .pro .des span{
     color: #606063;
     font-size: 12px;
 }
 #product1 .pro .des h5{
     padding-top: 7px;
     color: #1a1a1a;
     font-size: 14px;
 }
 #product1 .pro .des i{
     font-size: 12px;
     color: rgb(243, 181,25);
 }
 #product1 .pro .des h4{
     padding-top: 7px;
     font-size: 15px;
     font-weight: 700;
     color: green;
 }
 #product1 .pro a {
     display: inline-block;
     padding: 10px;
     background-color: #088178; 
     color: white; 
     border-radius: 50%;
     text-align: center;
     position: absolute;
     bottom: 20px;
     right: 15px;
     transition: background-color 0.3s ease, transform 0.3s ease;
 }
 #product1 .pro a:hover {
     background-color: #066c5e; 
     transform: scale(1.1); 
 }
 #product1 .pro a i {
     font-size: 1.2rem;
 } 


 #banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("img/banner/b2.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
 }
 #banner h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 2px;
 }
 #banner h2 {
    color: white;
    font-size: 30px;
    padding: 10px 0;
    margin-top: 8px;
 }
 #banner h2 span {
    color:#ff0000;
 }
 #banner .explore {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: black;
    background-color: white;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.2s ;
 }
 #banner .explore:hover {
    background-color: #088178;
    color: white;
 }


 #collection {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
 
 }
 #collection .bannermen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("img/banner/mens\ fashion.png");
    min-width:600px;
    height: 40vh;
    background-size: cover;
    background-position: center;
    box-shadow: 2px 2px 8px black;
 }
 #collection .bannerwomen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("img/banner/Beauty\ Banner.png");
    min-width:600px;
    height: 40vh;
    background-size: cover;
    background-position: center;
    box-shadow: 2px 2px 8px black;
 }


 #text-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 10px;
 }
#text-banner h2{
    color: #ffffff;
    font-weight:900 ;
    font-size: 22px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2; 
}
#text-banner h3{
    color: #ffa500;
    font-weight:800 ;
    font-size: 15px;
    margin-top: 5px;
    position: relative;
    z-index: 2; 
}
 #text-banner .seasonal{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url("img/banner/girl2.jpg");
    min-width:30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
 }
 #text-banner .footwear{
 display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url("img/banner/b4.jpg");
    min-width:30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
 }
 #text-banner .tops{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url("img/banner/girl1.jpg");
    min-width:30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
 }
#text-banner .seasonal::before,
#text-banner .footwear::before,
#text-banner .tops::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}


#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("img/banner/b14.png");
    background-position: 20% 30%;
    background-repeat: no-repeat;
    background-color: #041e42;
}
#newsletter h4{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
#newsletter p{
    font-size: 15px;
    font-weight: 600;
    color: #818ea0;
}
#newsletter p span{
    color:yellow ;
}
#newsletter input{
    height: 3.125rem;
    padding: 0 1.25rem;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius:4px ;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: rgba(255, 255, 255, 0.9);
}
#newsletter .sign{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    margin-top: 10px;
    height: 50px;
    margin-left: 3px;
    color: white;
    background-color:#088178;
    white-space: nowrap;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.2s ;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
#newsletter .form{
    display: flex;
    width: 40%;
}
#newsletter input:hover {
    border-color: #088178;
}


footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 80px;
    background-color: #e3e6f3; 
    border-top: 1px solid #ccc; 
    margin-top: 40px; 
}
footer .col-contact,
.col-about,
.col-account,
.col-install{
    flex: 1;
    min-width: 200px;
    margin: 0 20px; 
    padding: 10px;
}
footer h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

footer p,
footer a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}
footer .follow h4{
    padding-top: 5px;
}
footer a:hover {
    color: #088178; 
}
footer .icon {
    display: flex;
    gap: 10px; 
    padding-top: 10px;
}

footer .icon i {
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

footer .icon i:hover {
    color: #088178; 
}
footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc; 
    font-size: 14px;
    color: #666;
}
.row {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    gap: 10px; 
    padding-bottom: 10px;
}
.row img {
    width: 45%; 
    max-width: 200px; 
    height: auto; 
}

/* shop page */
#page-header {
    background-image: url("img/about/banner.png");
    background-size: cover;
    background-position: center;
    height: 40vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
#page-header .page-header-content {
    text-align: center;
    position: absolute;
    top: 26%;
    z-index: 1;
 }
 #page-header p {
    font-size: 20px; 
 }
#page-header h1 {
    font-size: 48px; 
    font-weight: 900; 
    margin-bottom: 10px;
    color: #fff; 
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


#product2 .pro-container {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; 
 }
 #product2 h1 {
     font-size: 2.5rem; 
     font-weight: bold; 
     margin-bottom: 20px; 
 }
 #product2 {
     text-align: center;
     display: none;
 }
 #product2 .pro{
     width: 23%;
     min-width: 200px;
     padding: 10px 12px;
     border: 1px solid #cce7de;
     border-radius: 25px;
     cursor: pointer;
     box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
     margin: 15px 0;
     transition: 0.2s ease;
     position: relative;
 }
 #product2 .pro:hover{
     box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
 }
 #product2 .pro img{
     width: 100%;
     border-radius: 20px;
 }
 #product2 .pro .des{
     text-align: start;
     padding: 10px 0;
 }
 #product2 .pro .des span{
     color: #606063;
     font-size: 12px;
 }
 #product2 .pro .des h5{
     padding-top: 7px;
     color: #1a1a1a;
     font-size: 14px;
 }
 #product2 .pro .des i{
     font-size: 12px;
     color: rgb(243, 181,25);
 }
 #product2 .pro .des h4{
     padding-top: 7px;
     font-size: 15px;
     font-weight: 700;
     color: green;
 }
 #product2 .pro a {
     display: inline-block;
     padding: 10px;
     background-color: #088178; 
     color: white; 
     border-radius: 50%;
     text-align: center;
     position: absolute;
     bottom: 20px;
     right: 15px;
     transition: background-color 0.3s ease, transform 0.3s ease;
 }
 #product2 .pro a:hover {
     background-color: #066c5e; 
     transform: scale(1.1); 
 }
 #product2 .pro a i {
     font-size: 1.2rem;
 } 


/* sproduct details */

#prodetails .single-pro-image{
    width: 40%;
    margin-right: 50px;
}
.small-img-group {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 10%;
    margin-left: 20px;
}
.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
    margin: 10px;
    margin-bottom: 10px;
}

#prodetails {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
 #prodetails .single-pro-details {
    width: 40%;
    padding-top:30px ;
 }
 #prodetails .single-pro-details h2{
   padding: 40px 20px 20px 20px;
    font-size: 26px;
 }
 #prodetails .single-pro-details h3{
    padding: 0px 20px 5px 20px;
  }

 #prodetails .single-pro-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    margin-left: 20px;
 }
 #prodetails .single-pro-details input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
    margin-left: 20px;
 }
 #prodetails .single-pro-details input:focus{
    outline: none;
 }
 #prodetails .single-pro-details .addcart{
    font-size: 12px;
    font-weight: 600;
    padding: 15px 30px 13px 30px;
    color: white;
    background-color:#066c5e;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.2s ;
    margin-bottom: 25px;
 }
 #prodetails .single-pro-details span {
    line-height: 25px;
    margin-left: 20px;
 }

 @media (max-width: 767px) {
    #prodetails {
        flex-direction: column;
        align-items: center;
    }
    #prodetails .single-pro-image {
        width: 100%;
        margin-right: 0;
    }
    #prodetails .small-img-group {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    #prodetails .small-img-col {
        margin: 10px;
    }
    #prodetails .single-pro-details {
        width: 100%;
        padding-top: 20px;
    } 
    #product2 .pro-container {
        grid-template-columns: repeat(1, 1fr);
    }
    #product2 .pro {
        width: 100%;
    } 
    /* blog page responsive */
    #blog {
        padding: 100px 20px 0 20px !important;
    }
    #blog .blog-box {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 50px;
    }
    #blog .blog-img {
        width: 100% !important;
        margin-right: 0;
        padding-left: 25px;
    }
    #blog img {
        height: 200px;
    }
    #blog .blog-details {
        width: 100%;
        margin-top: 20px;
    }
    #blog .blog-box h1 {
        font-size: 40px;
        top: -50px;
        left: 10px;
    }
    #blog .blog-details h3 {
        font-size: 20px;
    }
    #blog .blog-details p {
        font-size: 14px;
    }
    #blog .blog-details a {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    #prodetails .small-img-group {
        flex-direction: row;
        overflow-x: auto;
    }
    #prodetails .small-img-col {
        margin: 10px 10px 10px 0;
    }
  
} 
@media (min-width: 768px) and (max-width: 1023px) {
    #prodetails {
        flex-direction: column;
        align-items: center;
    }
    #prodetails .single-pro-image {
        width: 100%;
        margin-right: 0;
    }
    #prodetails .small-img-group {
        width: 100%;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    #prodetails .small-img-col {
        margin: 10px;
    }
    #prodetails .single-pro-details {
        width: 100%;
        padding-top: 20px;
    } 
    #product1 .pro-container{
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-left: 50px; 
    }
    #product2 .pro-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* blog page */

 #page-header.blog-header {
   background-image: url("img/banner/b19.jpg");
   background-size: cover;
}
#blog {
    padding: 150px 150px 0 150px;
}
#blog .blog-box {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}
#blog .blog-img {
    width: 50%;
    margin-right: 40px;
}
#blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#blog .blog-details {
    width: 50%;
}
#blog .blog-box h1 {
    position: absolute;
    font-size: 70px;
    font-weight:700;
    top: -69px;
    left: 0;
    color: #c9cbce;
    z-index: -1;
}
#blog .blog-details h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
#blog .blog-details p{
    margin-bottom: 10px;
}


#blog .blog-details a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-weight: 900;
    position: relative;
    transition: 0.3s;
}
#blog .blog-details a::after {
    content:"";
    position: absolute;
    top: 11px;
    right: -50px;
    width: 40px;
    height: 1px;
    background-color: #000000;
}
#blog .blog-details a:hover {
    color: #088178;
}
#blog .blog-details a:hover::after {
    background-color: #088178;
}

/* about page */

#aboutpg-header {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
#aboutpg-header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.page-header-content {
    text-align: center;
    position: relative;
    top: 1%;
    z-index: 1;
}
.header-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.header-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#about-story {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 80px 120px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.story-content {
    width: 50%;
    padding: 20px;
    margin-right: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.story-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #088178;
}
.story-content p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #666;
}
.story-content a {
    font-size: 11px;
    font-weight: 600;
    padding: 17px 30px;
    color: #fff;
    background-color: #088178;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.story-image {
    height:60%;
    width: 60%;
}
.story-image-right {
    order: 1;
    
}
.story-content a:hover {
    background-color: #066c5e;
}
#about-team {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
     padding: 40px 80px;
}
#about-team h2 {
    padding-bottom: 20px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.team-member {
    display: flex;
    background-color: #f7f7f7;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}
.team-member h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.team-member p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}
#about-testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
}
#about-testimonials h2 {
    padding-top: 40px;
}
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
blockquote {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
cite {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #666;
}
#aboutfooter {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 40px 80px;
    background-color: #e3e6f3;
    border-top: 1px solid #ccc;
    margin-top: 40px;
}
.foooter-icon {
    display: flex;
    gap: 15px;
    align-items: center;
}
.foooter-icon a {
    font-size: 20px;
    color: #333;
    transition: color 0.2s;
}
.foooter-icon a:hover {
    color: #088178;
}

@media (max-width: 767px) {
    #aboutpg-header {
        height: 50vh;
    }
    #aboutpg-header video {
        height: 50vh;
    }
    .page-header-content {
        top: 20%;
    }
    .header-title {
        font-size: 24px;
    }
    .header-subtitle {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    #aboutpg-header {
        height: 100vh;
    }
    #aboutpg-header video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .page-header-content {
        top: 3%;
    }
    .header-title {
        font-size: 22px;
    }
    .header-subtitle {
        font-size: 17px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .page-header-content {
        top: 2%;
    }
  }
  @media (min-width: 768px) and (max-width: 1023px) {
    .story-container {
      flex-direction: column;
    }
    .story-content {
      width: 100%;
      margin-right: 0;
    }
    .story-image {
      width: 100%;
      height: 200px;
      margin-top: 20px;
    }
  }
@media (max-width: 767px) {
    #about-story {
        padding: 20px;
    }
    .story-container {
        flex-direction: column;
    }
    .story-content {
        width: 100%;
        margin-right: 0;
    }
    .story-image {
        width: 100%;
        height: 200px;
        margin-top: 20px;
    }
}
@media (max-width: 480px) {
    #about-story {
        padding: 10px;
    }
    .story-content {
        padding: 10px;
    }
    .story-image {
        height: 150px;
    }
}
@media (max-width: 767px) {
    #about-team {
        padding: 20px;
    }
    .team-grid {
        gap: 20px;
    }
}
@media (max-width: 480px) {
    #about-team {
        padding: 10px;
    }
    #about-team h2 {
       padding-top: 120px;
    }
     .team-member img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }
    .team-grid {
        grid-template-columns: 1fr
      }
      .team-member {
        margin-bottom: 20px;
        margin-left: 80px;
        width: 100%;
        height: 100%;
      }
} 
@media (max-width: 767px) {
    #about-testimonials {
        padding: 20px;
    }
    .testimonials {
        flex-direction: column;
    }
    blockquote {
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    #about-testimonials {
        padding: 10px;
        margin-top: 630px;
    }
    blockquote {
        margin-bottom: 10px;
    }
    .foooter-icon {
        padding-left: 60px;
        padding-top: 10px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .team-member {
        width: 200px;
        height:250px;
    }
}


/* contact page */


  .container {
    width: 80%;
    margin: auto;
    overflow: hidden;
  }
  .hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('img/about/contact.jpg') no-repeat center center/cover;
    color:white;
    padding: 80px 0;
    text-align: center;
  }
   .hero-title, .hero-subtitle {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
  } 
  .hero-title {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  .hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  .cta {
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
  }
  .contact-info, .contact-form, .team, .faq, .final-cta {
    background: white;
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .contact-title, .team-title, .faq-title, .cta-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .contact-list {
    list-style: none;
    padding: 0;
  }
  .contact-item {
    margin: 15px 0;
    display: flex;
    align-items: center;
  }
  .contact-item i {
    margin-right: 10px;
    color: #007BFF;
  }
  input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  button[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
  }
  .team-members {
    margin: 20px 0;
    display: flex;
    background-color: #f7f7f7;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .team-name {
    font-size: 1.5em;
  }
  .faq-item {
    margin: 15px 0;
  }
  .faq-question {
    cursor: pointer;
    color: #007BFF;
  }
  .faq-answer {
    display: none;
  }
  .faq-question:hover {
    text-decoration: underline;
  }
  @media (max-width: 480px) {
    .contact-info .row {
      flex-direction: column;
    }
    .contact-info .col-md-6 {
      width: 100%;
    }
    .contact-info .map {
      width: 100%;
      margin-top: 20px;
    }
  }


 /* cart page */

#cart {
    padding: 40px 80px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  #cart table {
    width: 100%;
    border-collapse: collapse;
  }
  #cart table img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
  }
  #cart table th, #cart table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
  }
  #cart table input[type="number"] {
    width: 50px;
    height: 30px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  #cart table th {
    background-color: #f0f0f0;
    font-weight: bold;
  }
  .cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  .update-cart, .checkout {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .update-cart {
    background-color: #088178;
    color: #fff;
  }
   .checkout {
    background-color: #066c5e;
    color: #fff;
  }
  .cart-summary {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .coupon {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
  } 
  .coupon input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 70%;
  }
  .apply-coupon {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f39c12;
    color: #fff;
  } 

  @media (max-width: 480px) {
    #cart {
      padding: 10px;
    }
    #cart .container {
      padding: 0;
    }
    #cart table {
      width: 100%;
      border-collapse: collapse;
    }
    #cart table th, #cart table td {
      padding: 10px;
      font-size: 14px;
    }
    #cart table img {
      width: 50px;
      height: auto;
    }
    .cart-actions {
      flex-direction: column;
    }
    .update-cart, .checkout {
      margin-bottom: 10px;
      padding: 10px 20px;
    }
    .cart-summary {
      margin-top: 20px;
    }
    .cart-summary table {
      font-size: 14px;
    }
    .cart-summary table th, .cart-summary table td {
      padding: 10px;
    }
    .coupon {
      margin-top: 20px;
    }
    .coupon input[type="text"] {
      width: 100%;
    }
    .coupon button[type="button"] {
      padding: 10px 20px;
    }
    #cart h2 {
      font-size: 18px;
    }
    #cart h3 {
      font-size: 16px;
    }
  }
 



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
}
body {
    font-size: 16px;
    line-height: 1.5;
}

@media(max-width:480px) {
    .navbar {
       display: flex;
       flex-direction: column; 
       align-items: flex-start;
       justify-content: flex-start;
       position: fixed;
       top: 0;
       right: -300px;
       height: 100vh;
       width: 300px;
       background-color: #e3e6f3;
       box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
       padding: 80px 0 0 10px;
       transition: 0.3s ease;
    }
    .navbar.active {
       right: 0px;
    }
    .navbar li {
       margin-bottom: 25px;
       flex-wrap: wrap;
    }
    #close {
       display: block;
       position: absolute;
       top: 30px;
       left: 30px;
       color: #222;
       font-size: 24px;
    }
    .mobile {
       display: flex; 
       align-items: center;
    }
    #lg-bag {
       display: none;
    }
    .mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-right: 15px;
        padding-left: 4px; 
     }
 }
 
@media(max-width:799px) {
    .navbar {
       display: flex;
       flex-direction: column; 
       align-items: flex-start;
       justify-content: flex-start;
       position: fixed;
       top: 0;
       right: -300px;
       height: 100vh;
       width: 300px;
       background-color: #e3e6f3;
       box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
       padding: 80px 0 0 10px;
       transition: 0.3s ease;
    }
    .navbar.active {
       right: 0px;
    }
    .navbar li {
       margin-bottom: 25px;
       flex-wrap: wrap;
    }
    #close {
       display: block;
       position: absolute;
       top: 30px;
       left: 30px;
       color: #222;
       font-size: 24px;
    }
    .mobile {
       display: flex; 
       align-items: center;
    }
    #lg-bag {
       display: none;
    }
    .mobile i {
        color: #1a1a1a;
        font-size: 24px;
        /* padding-right: 15px;
        padding-left: 10px; */
     }
 }



 @media (max-width: 799px) {
    .slider {
      height: 50vh;
    }
    .slider img {
        height: 50vh;
      }
      .nav-indicator {
        bottom: 5px;
      }
  }
  
  @media (max-width: 480px) {
    .search-container{
        margin-bottom: 10px;
    }
    .slider {
      height: 30vh;
    }
    .slider img {
      height: 30vh;
      width: 100% !important;
      object-fit: contain;
    }
    .nav-indicator {
    bottom: 5px;
      width: 50px;
    }
    .dot {
      width: 10px;
      height: 10px;
    }
  }


@media (max-width: 1024px) {
    #product1 .pro {
        flex-basis: 45%;
    }
}

@media (max-width: 767px) {
    #product1 .pro {
        flex-basis: 100%;
    }
}

@media (max-width: 1024px) {
    #feature .fe-box {
        width: calc(50% - 20px); 
    }
}

@media (max-width: 767px) {
    #feature .fe-box {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    #feature .fe-box {
        width: 100%;
    }
    #cart-items{
        flex-direction: column;
    }
    #cart-summary{
        position: relative;
     
    }
}

@media (max-width: 767px) {
    .logo {
        width: 60px; 
        height: 30px;
        margin-right: 20px; 
        display: block;
    }
    #header {
        padding: 10px 20px;
        height: 60px; 
    }
    
    .cart-icon {
        margin-right: 10px; 
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    #feature {
        flex-direction: column;
        align-items: center;
    }
    #feature .fe-box {
        width: 80%;
        margin: 10px 0;
    }
}

@media (max-width: 767px) {
    #product1 .pro-container {
        grid-template-columns: repeat(1, 1fr);
    }
    #product1 .pro {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #product1 .pro-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 767px) {
    #banner {
        height: 25vh;
    }
    #banner h2 {
        font-size: 20px;
    }
    #banner .explore {
        font-size: 12px;
        padding: 10px 20px;
    }
}


@media (max-width: 767px) {
    #collection {
        flex-direction: column;
        padding: 20px;
    }
    #collection .bannermen,
    #collection .bannerwomen {
        min-width: 100%;
        margin-bottom: 20px;
        height: 250px; 
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 767px) {
    #text-banner {
        flex-direction: column;
    }
    #text-banner .seasonal,
    #text-banner .footwear,
    #text-banner .tops {
        min-width: 100%;
        margin-bottom: 20px;
    }
    #text-banner h2 {
        font-size: 18px;
    }
    #text-banner h3 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    #newsletter {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    #newsletter .form {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        flex-wrap: nowrap; 
    }
    #newsletter input {
        width: 70%;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    #newsletter .sign {
        width: auto;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

@media (max-width: 767px) {
    footer {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    footer .col-contact,
    footer .col-about,
    footer .col-account,
    footer .col-install {
        margin: 10px 0;
        width: 100%;
    }
    .icon i {
        margin: 0 5px; 
    }
}



/* Cart Section */
#cart-section {
    max-width: 100%;
    margin: auto;
    padding: 20px;
    padding-bottom: 130px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #cart-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
  }
  .cart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 2;
    margin-top: 60px;
  }
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  }
  .cart-item img {
    width: 100px;
    height: auto;
    border-radius: 8px;
  }
  .cart-item div {
    flex: 1;
    margin-left: 15px;
  }
  .cart-item h4 {
    font-size: 1.2rem;
    color: #333;
  }
  .cart-item p {
    margin: 5px 0;
    color: #666;
  }
  .cart-item button {
    background-color: #e63946;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .cart-item button:hover {
    background-color: #d62828;
  }
  #cart-summary {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    top: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin-left: 50px;
  }
  #cart-summary h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #333;
  }
  #cart-summary p {
    font-size: 1.2rem;
    color: #666;
  }
  .cart-buttons {
    margin-top: 20px;
   
  }
  .cart-buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .cart-buttons .continue-shopping {
    background-color: #8ecae6;
    color: #fff;
  }
  .cart-buttons .continue-shopping:hover {
    background-color: #219ebc;
  }
  .cart-buttons .checkout {
    background-color: #023047;
    color: #fff;
  }
  .cart-buttons .checkout:hover {
    background-color: #014f86;
  }
.cart-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cart-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
  
#cart-section {
    background-color: #e3e6f3; /* Change this to your desired background color */
}




.cart-button {
	position: relative;
	padding: 10px;
	width: 150px;
	height: 40px;
	border: 0;
	border-radius: 10px;
	background-color: #4834d4;
	outline: none;
	cursor: pointer;
	color: #fff;
	transition: .3s ease-in-out;
	overflow: hidden;
}
.cart-button:hover {
	background-color: #35269b;
}
.cart-button:active {
	transform: scale(.9);
}

.cart-button .fa-shopping-cart {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: -10%;
	font-size: 2em;
	transform: translate(-50%,-50%);
}
.cart-button .fa-box {
	position: absolute;
	z-index: 3;
	top: -20%;
	left: 52%;
	font-size: 1.2em;
	transform: translate(-50%,-50%);
}
.cart-button span {
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	font-size: 1.2em;
	color: #fff;
	transform: translate(-50%,-50%);
}
.cart-button span.add-to-cart {
	opacity: 1;
}
.cart-button span.added {
	opacity: 0;
}

.cart-button.clicked .fa-shopping-cart {
	animation: cart 1.5s ease-in-out forwards;
}
.cart-button.clicked .fa-box {
	animation: box 1.5s ease-in-out forwards;
}
.cart-button.clicked span.add-to-cart {
	animation: txt1 1.5s ease-in-out forwards;
}
.cart-button.clicked span.added {
	animation: txt2 1.5s ease-in-out forwards;
}
@keyframes cart {
	0% {
		left: -10%;
	}
	40%, 60% {
		left: 50%;
	}
	100% {
		left: 110%;
	}
}
@keyframes box {
	0%, 40% {
		top: -20%;
	}
	60% {
		top: 40%;
		left: 52%;
	}
	100% {
		top: 40%;
		left: 112%;
	}
}
@keyframes txt1 {
	0% {
		opacity: 1;
	}
	20%, 100% {
		opacity: 0;
	}
}
@keyframes txt2 {
	0%, 80% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}




.filter-options {
    margin-bottom: 20px;
}

.filter-options h2 {
    font-size: 24px;
}

.filter-options div {
    margin-bottom: 10px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
}

.product {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    width: calc(33.33% - 20px);
}


@media (max-width: 768px) {
    .navbar {
      position: absolute;
      top: 70px;
      right: -100%;
      width: 200px;
      height: 100vh;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      transition: right 0.3s ease;
      z-index: 100;
    }
  
    .navbar.active {
      right: 0;
    }
  
    .mobile {
      display: flex;
      align-items: center;
      gap: 15px;
    }
  
    #bar {
      font-size: 24px;
      cursor: pointer;
      color: #1a1a1a;
    }
  
    #lg-bag {
      display: none;
    }
  }
  
  
@media (max-width: 476px) {
  #cart-section {
    flex-direction: column;
    padding: 20px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item img {
    width: 100%;
    max-width: 250px;
  }

  .price-details {
    width: 100%;
    margin-top: 20px;
  }

  .price-details button {
    width: 100%;
    margin-top: 10px;
  }
}
