/********** Template CSS **********/
:root {
    --primary: #ff00ff;      /* Main brand color - magenta */
    --secondary: #d900ff;     /* Secondary color - purple */
    --tertiary: #b300b3;      /* Tertiary color - dark magenta */
    --light: #ffffff;         /* Light color */
    --dark: #1a001a;          /* Dark color with magenta tint */
    --gray: #f5f5f5;          /* Gray background */
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #eba6a6;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid var(--primary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: var(--primary);
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/ban\ 5.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
.about-bg {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 5px 5px;
}


/*** Category ***/
.cat-item {
    display: block;
    box-shadow: 0 0 45px rgb(144, 217, 240);
    border: 1px solid transparent;
    transition: .5s;
}

.cat-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/*** Job Listing ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.job-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.job-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}













#services img{
    border-radius: 20px;
}
.nav.nav-pills .nav-link.active { 
    background-color:#ff00ff!important;
    color: #ffffff;
}
.nav .nav-link,
.navbar-brand,
.navbar-brand:hover{
    color: #fff;
}

.text-colored{
    color: #21b463f1;
}

.nav-service-item{
    color: #000000!important;
}

.text-start.nav-link.text-colored.nav-service-item.active{
    color: #ffffff!important;
    background-color: #FF3131;
}









.banner-text h1{
  font-size: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 

  color: #dd1a1a;
  text-shadow:-1px 1px 0 rgb(117, 115, 115),
  2px 2px 0 rgb(121, 119, 119),
 2px -2px 0 rgb(255, 255, 255),
-2px -2px 0 rgb(255, 255, 255);
  


  font-stretch:extra-expanded;

  font-weight: 300%;
  
  }





















*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    list-style:none;
    text-decoration:none;
    transition:all .1s;
    user-select:none;
  }
  
  
  /*--color shotcut--*/
  :root {
    --black:#000;
    --white:#fff;
  }
  
  
  body{
    font-family: 'Roboto', sans-serif;
    overflow-x:hidden;
  }
  
  
  
  
  
  
  /*--- section code----*/
  
  section .brands{
    width: 100%;
    margin:50px 0;
    display:flex;
    justify-content:center;
  }
  
  
  section .brands .carousel{
    max-width: 1200px;
    height:auto;
    padding:0px 100px;
    padding-left:130px;
    position:relative;
  }
  
  section .brands .carousel .card{
    color: var(--white);
    text-align: center;
    margin: 0px 0;
    width:150px;
  }
  
  
  section .brands .carousel .card > img{
    width:100px;
    height:50px;
    object-fit:contain;
    padding:5px;
  }
  
  section .brands .carousel .owl-nav{
    position:absolute;
    top:35%;
    left:0;
    transform:translate(0,-50%);
    padding:0  90px;
    font-size:2em;
    color:#aaa;
    width:100%;
    display:flex;
    justify-content:space-between;
  }
  
  
  
  section .discount{
    padding:0 100px;
    display:grid;
    grid-template-columns: auto auto auto;
    gap:10px;
    padding-bottom:100px;
  }
  
  
  section .discount .discount-box{
    background:#eee;
    color:var(--white);
    height:450px;
    display:flex;
    flex-direction:column;
    justify-content:end;
    padding:30px 25px;
    position:relative;
  }
  
  section .discount .discount-box:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(236, 133, 133, 0.308);
  }
  
  section .discount .discount-box:nth-child(1){
  
    background-size:cover;
    background-position:center;
  }
  
  
  section .discount .discount-box:nth-child(2){
  
    background-size:cover;
    background-position:center;
  }
  
  
  
  section .discount .discount-box:nth-child(3){
  
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
  }
  
  
  section .discount .discount-box > h3,p,button{
    position:relative;
  }
  
  section .discount .discount-box > h3{
    font-size:1.3em;
    text-transform:capitalize;
  }
  
  section .discount .discount-box > p{
    font-size:.90em;
    margin:15px 0;
  }
  
  section .discount .discount-box > button{
    border:none;
    outline:none;
    width:120px;
    text-transform:uppercase;
    padding:10px 0px;
    cursor:pointer;
    font-weight:700;
    background:var(--white);
    color:var(--black);
    transition:all .5s;
  }
  
  section .discount .discount-box > button:hover{
    background:var(--black);
    color:var(--white);
  }
  
  
  
  section .featured-Products{
    background:#eee;
    padding:100px 100px;
    padding-top:200px;
    display:grid;
    grid-template-columns: auto auto auto auto;
    gap:10px;
    position:relative;
  }
  
  
  section .featured-Products h2{
    position:absolute;
    top:80px;
    left:50%;
    transform:translate(-50%,0);
    font-size:2.5em;
    padding:10px 0;
  }
  
  
  section .featured-Products h2:after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-2px;
    transform:translate(-50%,0);
    width:100px;
    height:1px;
    background:#0093E7;
  }
  
  
  section .featured-Products .product{
    height:350px;
    position:relative;
  }
  
  section .featured-Products .product .fa-shopping-basket{
    position:absolute;
    top:10px;
    right:10px;
    background:var(--white);
    padding:10px;
    border-radius:50%;
    box-shadow:0 0 10px #ccc;
    color:#888;
    opacity:0;
  } 
  
  section .featured-Products .product img{
    width:100%;
    height:200px;
    object-fit:cover;
    cursor:pointer;
  }
  
  
  section .featured-Products .product:hover .fa-shopping-basket{
    opacity:1;
  }
  
  
  section .featured-Products .product .sale{
    position:absolute;
    top:10px;
    left:10px;
    background:var(--white);
    padding:5px 10px;
    border-radius:20px;
    box-shadow:0 0 7px #aaa;
  }
  
  
  section .featured-Products .product .product-content{
    line-height:22px;
  }
  
  section .featured-Products .product .product-content .name{
    text-transform:capitalize;
    font-weight:700;
  }
  
  section .featured-Products .product .product-content .category{
    text-transform:capitalize;
    color:#aaa;
    font-weight:100;
  }
  
  section .featured-Products .product .product-content .price span{
    text-decoration:line-through;
    color:#999;
  }
  
  
  section .featured-Products .product .product-content .stars{
    font-size:.75em;
  }
  
  section .featured-Products .product .product-content .colors-option{
    margin-top:10px;
  }
  
  section .featured-Products .product .product-content .colors-option span{
    width:20px;
    height:20px;
    border-radius:50%;
    display:inline-block;
    background:orange;
    cursor:pointer;
  }
  
  section .featured-Products .product .product-content .colors-option span:hover{
    border:2px solid var(--black);
  }
  
  
  section .featured-Products .product .product-content .colors-option span.sheoActive,.braceletActive,.bagActive{
    border:2px solid var(--black);
  }
  
  
  section .featured-Products .product .product-content .colors-option span:nth-child(1){
    background:#0183CD;
  }
  
  section .featured-Products .product .product-content .colors-option span:nth-child(2){
    background:#31C202;
  }
  
  section .featured-Products .product .product-content .colors-option span:nth-child(3){
    background:#C104AD;
  }
  
  
  
  section .limited-Offer{
    background:#eee;
    padding:0px 100px;
    padding-bottom:100px;
  }
  
  
  section .limited-Offer .offer-content{
    background:url('https://websitedemos.net/brandstore-02ntent/uploads/sites/150/2019/12/banner-03.jpg');
    background-size:fill;
    background-position:70%;
    background-attachment: fixed;
    height:400px;
    position:relative;
  }
  
  section .limited-Offer .offer-content .content-box{
    color:var(--white);
    width:500px;
    position:absolute;
    left:50px;
    top:50%;
    transform:translate(0,-50%);
  }
  
  
  section .limited-Offer .offer-content:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0, 125, 196,.3);
  }
  
  
  
  
  section .limited-Offer .offer-content .content-box .offer{
    font-size:.95em;
    margin:10px 0;
  }
  
  
  section .limited-Offer .offer-content .content-box h3{
    font-size:2.4em;
    margin-bottom:10px;
  }
  
  
  section .limited-Offer .offer-content .content-box .content{
    font-size:.85em;
  }
  
  
  section .limited-Offer .offer-content .content-box button{
    border:none;
    outline:none;
    padding:10px 20px;
    text-transform:uppercase;
    margin-top:25px;
    font-weight:700;
    font-size:1.1em;
    background:var(--white);
    cursor:pointer;
    transition:all .3s;
  }
  
  
  section .limited-Offer .offer-content .content-box button:hover{
    background:var(--black);
    color:var(--white);
  }
  
  
  section .info{
    background:#eee;
    display:grid;
    grid-template-columns: auto auto auto auto;
    gap:10px;
    padding:0px 100px;
    padding-bottom:100px;
  }
  
  
  section .info .info-section{
    text-align:center;
    line-height:26px;
  }
  
  
  section .info .info-section img{
    width:50px;
    height:50px;
    object-fit:contain;
  }
  
  
  section .info .info-section p{
    color:#333;
    font-size:.95em;
  }
  
  
  /*--- footer ----- */
  footer{
    background:var(--white);
  }
  
  
  footer .offer-info{
    padding:50px 100px;
    font-size:1.3em;
    font-weight:700;
    cursor:pointer;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
  }
  
  
  footer .footer-info{
    background:var(--white);
    display:grid;
    grid-template-columns: 35% auto auto auto;
    gap:20px;
    padding:50px 100px;
    border-bottom:1px solid #ccc;
  }
  
  
  footer .footer-info .container img{
    width:80px;
  }
  
  footer .footer-info .container h2{
    font-size:1.2em;
    margin-top:15px;
  }
  
  footer .footer-info .container h5{
    font-size:1.2em;
    font-weight:100;
  }
  
  footer .footer-info .container ul{
    margin-top:15px;
  }
  
  footer .footer-info .container ul li{
    color:#666;
    padding:5px 0;
    cursor:pointer;
  }
  
  footer .footer-info .container ul li:hover{
    color:#008ED1; 
  }
  
  
  footer .footer-info .container form .name{
    border:1px solid #ccc;
    outline:none;
    padding:10px;
    width:100%;
    margin-top:20px;
    
  }
  
  footer .footer-info .container form .name:focus{
    border:1px solid #000;
  }
  
  
  footer .footer-info .container form .submit{
    border:none;
    outline:none;
    background:#008ED1;
    color:var(--white);
    padding:12px 25px;
    margin-top:10px;
    text-transform:uppercase;
    font-weight:700;
    cursor:pointer;
    transition:all .5s;
  }
  
  footer .footer-info .container form .submit:hover{
    background:var(--black);
  }
  
  
  footer .footer-copyright{
    display:flex;
    justify-content:space-between;
    padding:30px 100px;
  }
  
  footer .footer-copyright .copyright{
    font-size:.95em;
  }
  
  
  footer .footer-copyright .social{
    display:flex;
    gap:20px;
  }
  
  footer .footer-copyright .social .fa{
    cursor:pointer;
    font-size:1.2em;
  }
  
  
  footer .footer-copyright .social .fa:hover{
    color:#008ED1;
  }
  
  
  /*---- media queary min--750px & max--999px ----*/
  
  @media (min-width: 750px) and (max-width:999px) {
    
    
    header nav ul:nth-child(2){
      position:absolute;
      left:50%;
      top:50%;
      transform:translate(-50%,-50%);
      height:100%;
    }
    
    header nav ul:nth-child(3){
      background:rgba(0, 52, 82,.15);
      color:var(--white);
      display:block;
      right:0;
      top:92px;
      Width:200px;
      height:0px;
      overflow:hidden;
      text-align:center;
      transition:all .5s;
    }
    
    
    header nav ul:nth-child(3) li{
      margin:5px 0;
    }
    
    header nav ul:nth-child(3) li:nth-child(1){
      margin-top:30px;
    }
    
    header nav ul:nth-child(3) li:nth-child(5){
      margin-bottom:30px;
    }
    
    header nav .fa-bars,
    header nav .fa-remove{
      display:block;
      position:absolute;
      right:80px;
      top:50%;
      transform:translate(0,-50%);
      font-size:2em;
      cursor:pointer;
    }
    
    header nav .fa-bars:hover,
    header nav .fa-remove:hover{
      color:#008ED1;
    }
    
    
    header .content{
      left:50px;
    }
    
    
    section .brands .carousel{
    padding:0px 50px;
    padding-left:60px;
    }
    
    section .brands .carousel .owl-nav{
    padding:0  50px;
   }
    
    
    section .discount{
      padding:0 50px;
      padding-bottom:100px;    
    }
    
    section .discount .discount-box{
    height:350px;
      padding:30px 15px;
    }
    
    
    section .discount .discount-box h3{
      font-size:1em;
    }
    
    section .featured-Products{
    padding:100px 50px;
    padding-top:200px;
    grid-template-columns: auto auto auto;
   }
    
    
    section .limited-Offer{
    padding:0px 50px;
    padding-bottom:100px;
    }
    
    section .info{
    grid-template-columns: auto auto ;
    padding:0px 50px;
    padding-bottom:100px;
    }
    
    
    
    footer .offer-info{
    padding:50px 50px;
    }
  
  
    footer .footer-info{
    gap:10px;
    padding:50px 50px;
    }
    
    footer .footer-copyright{
    padding:30px 50px;
    }
    
  }
  
  
  /*---- media queary min--600px & max--749px ----*/
  
  @media (min-width: 600px) and (max-width:749px) {
    
    
    header{
      background-position:center;
    }
    
    
    header nav ul:nth-child(2){
      position:absolute;
      left:50%;
      top:50%;
      transform:translate(-50%,-50%);
      height:100%;
      font-size:.95em;
    }
    
    header nav ul:nth-child(3){
      background:rgba(0, 52, 82,.15);
      color:var(--white);
      display:block;
      right:0;
      top:92px;
      Width:200px;
      height:0px;
      overflow:hidden;
      text-align:center;
      transition:all .5s;
    }
    
    
    header nav ul:nth-child(3) li{
      margin:5px 0;
    }
    
    header nav ul:nth-child(3) li:nth-child(1){
      margin-top:30px;
    }
    
    header nav ul:nth-child(3) li:nth-child(5){
      margin-bottom:30px;
    }
    
    header nav .fa-bars,
    header nav .fa-remove{
      display:block;
      position:absolute;
      right:50px;
      top:50%;
      transform:translate(0,-50%);
      font-size:2em;
      cursor:pointer;
    }
    
    header nav .fa-bars:hover,
    header nav .fa-remove:hover{
      color:#008ED1;
    }
    
    
    header .content{
      left:50px;
    }
    
    
    section .brands .carousel{
    padding:0px 50px;
    padding-left:60px;
    }
    
    section .brands .carousel .owl-nav{
    padding:0  50px;
   }
    
    
    section .discount{
      padding:0 50px;
      padding-bottom:100px;
      grid-template-columns: auto auto ;
    }
    
    section .discount .discount-box{
    height:350px;
      padding:30px 15px;
    }
    
    
    section .discount .discount-box h3{
      font-size:1em;
    }
    
    section .featured-Products{
    padding:100px 50px;
    padding-top:200px;
    grid-template-columns: auto auto;
   }
    
    section .featured-Products h2{
      font-size:2.2em;
    }
    
    
    section .limited-Offer{
    padding:0px 50px;
    padding-bottom:100px;
    }
    
    
    section .limited-Offer .offer-content .content-box{
      left:30px;
      width:85%;
    }
    
    section .info{
    grid-template-columns: auto auto ;
    padding:0px 50px;
    padding-bottom:100px;
    }
    
    
    
    footer .offer-info{
    padding:50px 50px;
    }
  
  
    footer .footer-info{
    gap:30px;
    padding:50px 50px;
    grid-template-columns: auto auto;
    }
    
    footer .footer-copyright{
    padding:30px 50px;
      font-size:.90em;
    }
  }
  
  
  
  /*---- media queary min--0px & max--599px ----*/
  
  @media (min-width: 0px) and (max-width:599px) {
    
    
    header{
      background-position:center;
    }
    
    header nav ul:nth-child(2){
      background:rgba(0, 52, 82,.15);
      color:var(--white);
      display:block;
      Width:auto;
      height:auto;
      text-align:left;
      padding:30px 30px;
      transition:all .5s;
      position:absolute;
      left:-162px;
      top:92px;
    }
    
    header nav ul:nth-child(2):after{
      content:"\27A7";
      position:absolute;
      top:10px;
      right:-15px;
      font-size:2em;
      cursor:pointer;
    }
    
    header nav ul:nth-child(2):after:hover{
      color:#008ED1;
    }
    
    header nav ul:nth-child(3){
      background:rgba(0, 52, 82,.15);
      color:var(--white);
      display:block;
      right:0;
      top:92px;
      Width:200px;
      height:0px;
      overflow:hidden;
      text-align:center;
      transition:all .5s;
    }
    
    
    header nav ul:nth-child(3) li{
      margin:5px 0;
    }
    
    header nav ul:nth-child(3) li:nth-child(1){
      margin-top:30px;
    }
    
    header nav ul:nth-child(3) li:nth-child(5){
      margin-bottom:30px;
    }
    
    header nav .fa-bars,
    header nav .fa-remove{
      display:block;
      position:absolute;
      right:50px;
      top:50%;
      transform:translate(0,-50%);
      font-size:2em;
      cursor:pointer;
    }
    
    header nav .fa-bars:hover,
    header nav .fa-remove:hover{
      color:#008ED1;
    }
    
    
    header .content{
      left:0px;
      width:100%;
      padding:0 30px;
    }
    
    header .content .heading{
      font-size:2.1em;
    }
    
    header .content h4{
      font-size:1.1em;
    }
    
    header .content button{
      font-size:.80em;
    }
    
    section .brands .carousel{
    padding:0px 15px;
    padding-left:15px;
    }
    
    section .brands .carousel .owl-nav{
    padding:0  10px;
   }
    
    
    section .discount{
      padding:0 10px;
      padding-bottom:100px;
      grid-template-columns: auto;
    }
    
    section .discount .discount-box{
      height:480px;
      padding:30px 15px;
    }
    
    
    section .discount .discount-box h3{
      font-size:1.4em;
    }
    
    section .featured-Products{
    padding:100px 10px;
    padding-top:200px;
    grid-template-columns: auto auto;
   }
    
    section .featured-Products .product img{
      height:150px;
    }
    
    section .featured-Products h2{
      font-size:1.2em;
      text-align:center;
    }
    
    
    section .limited-Offer{
    padding:0px 10px;
    padding-bottom:100px;
    }
    
    
    section .limited-Offer .offer-content .content-box{
      left:20px;
      width:85%;
    }
    
    section .info{
    grid-template-columns: auto;
    padding:0px 10px;
    padding-bottom:100px;
    }
    
    
    
    footer .offer-info{
    padding:50px 10px;
      font-size:1em;
    }
  
  
    footer .footer-info{
    gap:30px;
    padding:50px 10px;
    grid-template-columns: auto;
    }
    
    footer .footer-copyright{
      padding:30px 10px;
      font-size:.80em;
      gap:10px;
    }
    
  }






































/*** Category ***/
.section {
  padding: 10rem 0;
}

.section.rent {
  background-color: #f0f4f7;
}

.rent-center {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 4rem 2rem;
}

.title {
  text-align: center;
  margin-bottom: 5rem;
  padding: 1rem;
}

.title h1 {
  font-weight: 100;
  font-size: 6rem;
  margin-bottom: 1rem;
}

.rent .box {
  transition: all 300ms ease-in-out;
  background-color: white;
}

.rent .box:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.rent .box .top {
  padding: 1rem;
  position: relative;
  height: 20rem;
  transition: all 300ms ease-in-out;
}

.rent .box:hover .top {
  cursor: pointer;
}

.rent .box .top img {
  height: 100%;
  object-fit: cover;
}

.rent .box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  background-color: white;
  height: 20rem;
  width: 100%;
}

.rent .box .overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
}

.rent .box .top:hover .overlay::after {
  opacity: 1;
  visibility: visible;
}

.rent .box .pos {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.rent .box .pos span {
  display: inline-block;
  font-size: 1.3rem;
  color: white;
  margin-right: 0.5rem;
  padding: 0.3rem;
  border-radius: 0.3rem;
}

.rent .box .pos span:first-child {
  background-color: #43c370;
}

.rent .box .pos span:last-child {
  background-color: #e0203b;
}

.rent .box .bottom {
  padding: 1.5rem;
}

.rent .box .bottom p {
  font-size: 2rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.rent .box .bottom div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  color: #555;
}

.rent .box .bottom div span {
  font-size: 1.8rem;
}

.rent .box:hover .bottom p {
  color: #006eff;
}

.rent .box .bottom div i {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .title h1 {
    font-size: 4rem;
  }
}

@media (max-width: 567px) {
  .tile h1 {
    font-size: 3rem;
  }
}







/*** Job Listing ***/



.container{
  max-width: 1200px;
  margin:100px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:20px;
}

.container .main-video-container{
  flex:1 1 700px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  background-color: #fff;
  padding:15px;
}

.container .main-video-container .main-video{
  margin-bottom: 7px;
  border-radius: 5px;
  width: 100%;
}

.container .main-video-container .main-vid-title{
  font-size: 20px;
  color:#444;
}

.container .video-list-container{
  flex:1 1 350px;
  height: 485px;
  overflow-y: scroll;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  background-color: #fff;
  padding:15px;
}

.container .video-list-container::-webkit-scrollbar{
  width: 10px;
}

.container .video-list-container::-webkit-scrollbar-track{
  background-color: #fff;
  border-radius: 5px;
}

.container .video-list-container::-webkit-scrollbar-thumb{
  background-color: #444;
  border-radius: 5px;
}

.container .video-list-container .list{
  display: flex;
  align-items: center;
  gap:15px;
  padding:10px;
  background-color: #eee;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
}

.container .video-list-container .list:last-child{
  margin-bottom: 0;
}

.container .video-list-container .list.active{
  background-color: #444;
}

.container .video-list-container .list.active .list-title{
  color:#fff;
}

.container .video-list-container .list .list-video{
  width: 100px;
  border-radius: 5px;
}

.container .video-list-container .list .list-title{
  font-size: 17px;
  color:#444;
}


@media (max-width:1200px){

  .container{
     margin:0;
  }

}

@media (max-width:450px){

  .container .main-video-container .main-vid-title{
     font-size: 15px;
     text-align: center;
  }

  .container .video-list-container .list{
     flex-flow: column;
     gap:10px;
  }

  .container .video-list-container .list .list-video{
     width: 100%;
  }

  .container .video-list-container .list .list-title{
     font-size: 15px;
     text-align: center;
  }

}




.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}

.job-item {
  border: 1px solid transparent;
  border-radius: 2px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .5s;
}

.job-item:hover {
  border-color: rgba(0, 0, 0, .08);
  box-shadow: none;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 5px solid var(--primary);
  border-radius: 2px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}





/* Color Variables */
:root {
--white: #fff;
--black: #222;
--green: #6cbe02;
--grey1: #f0f0f0;
--grey2: #e9d7d3;
}

/* Basic Reset */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}

html {
box-sizing: border-box;
font-size: 69.5%;
}

body {

font-size: 1.6rem;
background-color: var(--white);
color: var(--black);
font-weight: 400;
font-style: normal;
}









.container{
max-width: 1200px;
margin:100px auto;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
gap:20px;
}

.container .main-video-container{
flex:1 1 700px;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,.1);
background-color: #fff;
padding:15px;
}

.container .main-video-container .main-video{
margin-bottom: 7px;
border-radius: 5px;
width: 100%;
}

.container .main-video-container .main-vid-title{
font-size: 20px;
color:#444;
}

.container .video-list-container{
flex:1 1 350px;
height: 485px;
overflow-y: scroll;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,.1);
background-color: #fff;
padding:15px;
}

.container .video-list-container::-webkit-scrollbar{
width: 10px;
}

.container .video-list-container::-webkit-scrollbar-track{
background-color: #fff;
border-radius: 5px;
}

.container .video-list-container::-webkit-scrollbar-thumb{
background-color: #444;
border-radius: 5px;
}

.container .video-list-container .list{
display: flex;
align-items: center;
gap:15px;
padding:10px;
background-color: #eee;
cursor: pointer;
border-radius: 5px;
margin-bottom: 10px;
}

.container .video-list-container .list:last-child{
margin-bottom: 0;
}

.container .video-list-container .list.active{
background-color: #444;
}

.container .video-list-container .list.active .list-title{
color:#fff;
}

.container .video-list-container .list .list-video{
width: 100px;
border-radius: 5px;
}

.container .video-list-container .list .list-title{
font-size: 17px;
color:#444;
}




@media (max-width:1200px){

.container{
   margin:0;
}

}

@media (max-width:450px){

.container .main-video-container .main-vid-title{
   font-size: 15px;
   text-align: center;
}

.container .video-list-container .list{
   flex-flow: column;
   gap:10px;
}

.container .video-list-container .list .list-video{
   width: 100%;
}

.container .video-list-container .list .list-title{
   font-size: 15px;
   text-align: center;
}

}













a {
text-decoration: none;
color: var(--black);
}

li {
list-style: none;
}

img {
width: 100%;
}

.container {
max-width: 114rem;
margin: 0 auto;
padding: 0 3rem;
}

.d-flex {
display: flex;
align-items: center;
}

/* 
=================
Header
=================
*/

.header {
position: relative;
min-height: 79vh;
overflow-x: hidden;
z-index: 0;
}

/* 
=================
Navigation
=================
*/
.navigation {
position: relative;
z-index: 2;
height: 6rem;
line-height: 6rem;
}

.nav-center {
justify-content: space-between;
}

.logo {
color: white;
}

.nav-center .nav-item:not(:last-child) {
margin-right: 0.5rem;
}

.nav-center .nav-link {
font-size: 1.8rem;
padding: 1rem;
color: white;
}

.nav-center .nav-link:hover {
color: var(--green);
}

.nav-center .hamburger {
display: none;
font-size: 2.3rem;
color: var(--black);
cursor: pointer;
}

@media only screen and (max-width: 768px) {
.nav-list {
  position: fixed;
  top: 12%;
  left: -35rem;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  height: 100%;
  width: 0%;
  max-width: 35rem;
  z-index: 100;
  transition: all 300ms ease-in-out;
}

.nav-list.open {
  left: 0;
  width: 100%;
}

.nav-list .nav-item {
  margin: 0 0 1rem 0;
  width: 100%;
}

.nav-list .nav-link {
  font-size: 2rem;
  color: var(--black);
}

.nav-center .hamburger {
  display: block;
  color: white;
  font-size: 3rem;
}
}

/* Hero */

.hero,
.heroslider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
}

.hero img {
height: 100%;
width: 100%;
object-fit: cover;
}

.swiper-button-next::after,
.swiper-button-prev::after {
content: "";
}

.swiper-button-next {
right: -50px;
}

.swiper-button-prev {
left: -50px;
}

.header:hover .swiper-button-next {
right: 40px;
}
.header:hover .swiper-button-prev {
left: 40px;
}

.swiper-button-next,
.swiper-button-prev {
background-color: rgba(0, 0, 0, 0.8);
border-radius: 50%;
padding: 0.5rem 2.3rem;
transition: all 500ms ease-in-out;
}

.swiper-icon {
font-size: 5rem;
color: white;
}

.header .content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
z-index: 1;
text-align: center;
}

.header .content h1 {
font-size: 7rem;
color: #ffffff;
margin-bottom: 4rem;
}

.header .search {
width: 70rem;
margin: 0 auto;
padding: 1rem 2rem;
background-color: rgba(0, 0, 0, 0.6);
display: flex;
align-items: center;
justify-content: center;
}

.header .search input {
width: 100%;
padding: 1.5rem 0;
text-indent: 1rem;
font-size: 1.6rem;
margin-right: 1rem;
outline: none;
border: none;
}

.header .search a {
display: inline-block;
padding: 1.5rem 4rem;
background-color: var(--green);
color: white;
border-radius: 0.5rem;
}

@media (max-width: 996px) {
.header .content h1 {
  font-size: 5rem;
  margin-bottom: 3rem;
}

.header .search {
  width: 50rem;
}
}

@media (max-width: 567px) {
.header .content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.header .search {
  width: 100%;
}

.header .search input {
  padding: 1rem 0;
  font-size: 1.3rem;
}

.header .search a {
  padding: 1rem;
}

.header:hover .swiper-button-next {
  right: 5px;
}
.header:hover .swiper-button-prev {
  left: 5px;
}

.swiper-icon {
  font-size: 3rem;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 0.2rem 2.3rem;
}
}

/* Rent Properties */
.section {
padding: 10rem 0;
}

.section.rent {
background-color: #f0f4f7;
}

.rent-center {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
gap: 4rem 2rem;
}

.title {
text-align: center;
margin-bottom: 5rem;
padding: 1rem;
}

.title h1 {
font-weight: 100;
font-size: 6rem;
margin-bottom: 1rem;
}

.rent .box {
transition: all 300ms ease-in-out;
background-color: white;
}

.rent .box:hover {
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.rent .box .top {
padding: 1rem;
position: relative;
height: 20rem;
transition: all 300ms ease-in-out;
}

.rent .box:hover .top {
cursor: pointer;
}

.rent .box .top img {
height: 100%;
object-fit: cover;
}

.rent .box .overlay {
position: absolute;
top: 0;
left: 0;
padding: 1rem;
background-color: white;
height: 20rem;
width: 100%;
}

.rent .box .overlay::after {
content: "";
position: absolute;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.2);
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
transition: all 300ms ease-in-out;
}

.rent .box .top:hover .overlay::after {
opacity: 1;
visibility: visible;
}

.rent .box .pos {
position: absolute;
top: 2rem;
left: 2rem;
}

.rent .box .pos span {
display: inline-block;
font-size: 1.3rem;
color: white;
margin-right: 0.5rem;
padding: 0.3rem;
border-radius: 0.3rem;
}

.rent .box .pos span:first-child {
background-color: #43c370;
}

.rent .box .pos span:last-child {
background-color: #e0203b;
}

.rent .box .bottom {
padding: 1.5rem;
}

.rent .box .bottom p {
font-size: 2rem;
font-weight: 500;
color: #555;
cursor: pointer;
transition: all 300ms ease-in-out;
}

.rent .box .bottom div {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
color: #555;
}

.rent .box .bottom div span {
font-size: 1.8rem;
}

.rent .box:hover .bottom p {
color: #006eff;
}

.rent .box .bottom div i {
font-size: 2.5rem;
}

@media (max-width: 768px) {
.title h1 {
  font-size: 4rem;
}
}

@media (max-width: 567px) {
.title h1 {
  font-size: 3rem;
}
}










/* Grid Properties */
.wrapper {
display: grid;
grid-gap: 10px;
grid-template-columns: 1fr 1fr 1fr;
}

.box {
border-radius: 5px;
overflow: hidden;
}

.box img {
height: 100%;
object-fit: cover;
transition: all 500ms ease-in-out;
}

.box:hover img {
transform: scale(1.1);
}

.box1 {
grid-column: 1 / span 2;
height: 35rem;
}
.box2 {
grid-column: 3;
grid-row: 1 / span 2;
}
.box3 {
grid-column: 1;
grid-row: 2;
}
.box4 {
grid-column: 2;
grid-row: 2;
}

@media (max-width: 768px) {
.box1 {
  grid-column: 1 / span 3;
  height: 20rem;
}
.box2 {
  grid-column: 3;
  grid-row: 2;
  height: 20rem;
}
}

@media (max-width: 567px) {
.wrapper .box {
  height: 15rem;
}
}

/* Contact */
.contact {
background: url("./images/pic5.jpg") no-repeat fixed;
color: var(--white);
padding: 10rem 20rem;
}

.contact .row {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
}

.contact .row .col h2 {
margin-bottom: 1.5rem;
font-size: 3rem;
}

.contact .row .col p {
font-size: 1.8rem;
width: 70%;
margin-bottom: 2rem;
}

.btn-1 {
background-color: var(--green);
color: var(--white);
display: inline-block;
border-radius: 1rem;
font-size: 1.8rem;
padding: 1.5rem 5rem;
}

.contact form div {
position: relative;
margin: 0 auto;
}

.contact form input {
font-family: "Roboto", sans-serif;
text-indent: 2rem;
font-size: 1.8rem;
width: 100%;
border-radius: 1rem;
padding: 2rem 0;
outline: none;
border: none;
}

.contact form a {
position: absolute;
top: 0;
right: 0;
background-color: var(--green);
color: white;
margin: 0.5rem;
padding: 1.7rem 5rem;
border-radius: 1rem;
}

@media only screen and (max-width: 996px) {
.contact {
  padding: 8rem 8rem;
}
}

@media only screen and (max-width: 768px) {
.contact .row {
  grid-template-columns: 1fr;
  gap: 5rem 0;
}
}

@media only screen and (max-width: 567px) {
.contact {
  padding: 8rem 1rem;
}
}

























.neon-button {
            /* Text Styling - Reduced size */
            color: #ffffff !important;
            font-family: Arial, sans-serif;
            font-weight: bold;
            font-size: 14px; /* Scaled down from 24px */
            text-transform: uppercase;
            text-decoration: none !important;
            
            /* Button Shape - Tightened padding */
            display: inline-block;
            background-color: #1a1a1a;
            padding: 8px 24px; /* Scaled down from 15px 50px */
            border-radius: 25px; /* Adjusted for smaller height */
            border: none;
            
            /* The Neon Glow - Reduced spread for a cleaner look */
            box-shadow: 
                0 0 5px #ff00ff, 
                0 0 10px #ff00ff;
            
            transition: all 0.3s ease-in-out;
        }

        .neon-button:hover {
            /* Subtler hover effect */
            box-shadow: 
                0 0 8px #ff00ff, 
                0 0 20px #ff00ff;
            transform: translateY(-1px); /* Slight lift effect */
        }







        .shop-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shop-img-large {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 260px;
    object-fit: cover;
    width: 100%;
}

.rounded {
    border-radius: 12px !important;
}

.shadow-sm {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}


.social-box {
    transition: 0.3s ease;
    background: #f8f8f8;
    cursor: pointer;
}

.social-box:hover {
    transform: translateY(-6px);
    background: #111;
    color: #fff;
}


.social-box i {
    display: block;
    margin-bottom: 10px;
}

.social-box .fa-instagram {
    color: #E1306C;
}

.social-box .fa-facebook {
    color: #1877F2;
}

.social-box .fa-tiktok {
    color: #111111;
}

.social-box .fa-youtube {
    color: #FF0000;
}

.social-box .fa-pinterest {
    color: #E60023;
}


.social-box {
    background: #f8f8f8;
    padding: 25px 15px;
    border-radius: 12px;
    transition: 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.social-box h6 {
    margin-top: 10px;
    font-size: 14px;
    white-space: nowrap;
}

.social-box:hover {
    transform: translateY(-6px);
    background: #111;
    color: #fff;
}


.social-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    gap: 15px;
}

/* ICON LEFT */
.icon-box {
    width: 60px;
    text-align: center;
}

/* TEXT RIGHT */
.text-box h6 {
    margin: 0;
    font-weight: 600;
}

.text-box p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* BRAND ICON COLORS */
.fa-instagram { color: #E1306C; }
.fa-facebook { color: #1877F2; }
.fa-tiktok { color: #111; }

/* 🔥 HOVER EFFECT */
.social-card:hover {
    background: #111;
}

.social-card:hover h6,
.social-card:hover p {
    color: #fff;
}

.social-card:hover i {
    color: #fff;
}



.social-card {
    background: #f8f8f8;
    padding: 18px;
    border-radius: 12px;
    transition: 0.3s ease;
    gap: 15px;
}

.icon-box {
    width: 60px;
    text-align: center;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* CIRCLE IMAGE */
.img-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #111;
}

.img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}



/* SALE BUTTON */
.btn-sale {
    background: #fff;
    color: #ff3c00;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* HOVER EFFECT */
.btn-sale:hover {
    background: #111;
    color: #fff;
    transform: scale(1.05);
}

/* RIGHT IMAGE */
.sale-img {
    width: 180px;
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}



/* MAIN BUTTON */
.btn-custom {
    background: #0066ff;
    color: #fff;
    border: none;
    transition: 0.3s ease;
    border-radius: 8px;
}

/* HOVER (PINK + BLUE GRADIENT) */
.btn-custom:hover {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,0,255,0.3);
}

/* OUTLINE BUTTON */
.btn-custom-outline {
    background: transparent;
    border: 2px solid #0066ff;
    color: #0066ff;
    transition: 0.3s ease;
    border-radius: 8px;
}

/* OUTLINE HOVER */
.btn-custom-outline:hover {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    color: #fff;
    border: 2px solid transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,102,255,0.3);
}

.btn-wa {
    background: #0066ff;
    color: #fff;
    border: none;
    transition: 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
}

/* HOVER EFFECT (NEON STYLE) */
.btn-wa:hover {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,0,255,0.3);
}


/* NAV BUTTONS */
.nav-service-item {
    background: #f5f5f5;
    margin-bottom: 8px;
    color: #111;
    border-radius: 6px;
    transition: 0.3s ease;
}

/* ACTIVE TAB */
.nav-service-item.active {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    color: #fff !important;
    border: none;
}

/* HOVER EFFECT */
.nav-service-item:hover {
    background: #111;
    color: #fff;
}

/* SERVICE BOX */
.service-box {
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.service-box img {
    border-radius: 10px;
    height: 220px;
    object-fit: cover;
}

/* HOVER EFFECT ON ITEMS */
.service-box:hover {
    transform: translateY(-5px);
}

.service-box h5 {
    margin-top: 10px;
    font-weight: 600;
}

/* CARD BASE */
.social-card {
    background: #f8f8f8;
    padding: 18px;
    border-radius: 12px;
    transition: 0.3s ease;
}

/* LAYOUT */
.icon-box {
    width: 60px;
    text-align: center;
}

/* TEXT */
.text-box h6 {
    margin: 0;
    font-weight: 600;
}

.text-box p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* 🔥 BRAND ICON COLORS */
.fa-instagram { color: #E1306C; }
.fa-facebook { color: #1877F2; }
.fa-tiktok { color: #111; }
.fa-youtube { color: #FF0000; }
.fa-pinterest { color: #E60023; }
.fa-linkedin { color: #0A66C2; }

/* 🔥 HOVER (NEON BRAND GRADIENT) */
.social-card:hover {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    transform: translateY(-6px);
}

/* TEXT ON HOVER */
.social-card:hover h6,
.social-card:hover p {
    color: #fff;
}

/* ICON ON HOVER */
.social-card:hover i {
    color: #fff !important;
}




/* HERO SECTION */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('img/about-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
}

/* SECTION SPACING */
.section-padding {
    padding: 70px 0;
}

/* IMAGE STYLE */
.about-img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FEATURE BOX */
.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
}

/* BUTTON */
.btn-brand {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-brand:hover {
    transform: scale(1.05);
}

/* TEXT */
.text-muted-custom {
    color: #666;
}



/* latest product */

.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.products .box-container .box{
    position: relative;
    background: #f9f9f9;
    overflow: hidden;
    border-radius: 1rem;
    border: .1rem solid rgba(0,0,0,0.3);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.products .box-container .box .image{
    height: 35rem;
    width: 100%;
    overflow: hidden;
}

.products .box-container .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.products .box-container .box:hover .image img{
    transform: scale(1.1);
}

.products .box-container .box .content{
    padding: 1.5rem 2rem;
}

.products .box-container .box .content h3{
    font-size: 2rem;
    color: #10221b;
}

.products .box-container .box .content .price{
    font-size: 1.7rem;
    color: #666;
    padding: .5rem 0;
}

.products .box-container .box .content .stars{
    font-size: 1.7rem;
}

.products .box-container .box .content .stars i{
    color: gold;
}

.products .box-container .box .content .stars span{
    color: #666;
}

.products .box-container .box .content .btn{
    position: absolute;
    bottom: 0; right: 0;
    display: flex;
    font-size: 2rem;
    padding: 1.2rem 1.25rem;
    border-radius: 1rem 0 1rem 0;
}

/* end */




.back-to-top {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    border: none;
    color: #fff;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0066ff, #ff00ff); /* optional flip effect */
    color: #fff;
}

.btn-custom {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    border: none;
    color: #fff;
    transition: 0.3s ease;
}

.btn-custom:hover {
    background: linear-gradient(135deg, #0066ff, #ff00ff);
    color: #fff;
}

/* Outline version */
.btn-custom-outline {
    background: transparent;
    border: 2px solid;
    border-image: linear-gradient(135deg, #ff00ff, #0066ff) 1;
    color: #ff00ff;
    transition: 0.3s ease;
}

.btn-custom-outline:hover {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    color: #fff;
}


.btn-wa {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    border: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-wa:hover {
    background: linear-gradient(135deg, #0066ff, #ff00ff);
    color: #fff;
    transform: translateY(-2px);
}

/* Optional: make it slightly rounded & premium */
.btn-wa {
    border-radius: 8px;
}



.btn-wa {
    background: linear-gradient(135deg, #ff00ff, #0066ff) !important;
    color: #fff !important;
    border: none !important;
}


.product-img {
    width: 100%;
    height: 300px; /* you can adjust */
    object-fit: contain; /* THIS is the key fix */
    background: #f9f9f9; /* optional clean background */
    padding: 10px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.rent .overlay {
    width: 100%;
    height: 220px; /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9; /* clean background */
    overflow: hidden;
}

.rent .overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* KEY: shows full image */
    transition: transform 0.3s ease;
}

.rent .overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: #fff;

    transition: all 0.3s ease;
}

.box:hover .overlay img {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 0 15px rgba(255, 0, 255, 0.4),
        0 0 25px rgba(0, 102, 255, 0.4);
}


.footer {
    background: #0a0a0a; /* deep dark */
    color: rgba(255,255,255,0.7);
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer a {
    color: rgba(255,255,255,0.6);
    transition: 0.3s;
}

.footer a:hover {
    color: #ffffff;
    letter-spacing: 1px;
}

/* Gradient accent line */
.footer::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    margin-bottom: 30px;
}

/* Social buttons */
.footer .btn-social {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: 0.3s;
}

.footer .btn-social:hover {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    border-color: transparent;
    color: #fff;
}

/* Newsletter input */
.footer input {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.footer input::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Button */
.footer .btn-primary {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    border: none;
}

.footer .btn-primary:hover {
    background: #00ff88; /* green hover like you wanted */
    color: #000;
}

/* Copyright */
.footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.footer .footer-menu a {
    margin-left: 15px;
    color: rgba(255,255,255,0.6);
}

.footer .footer-menu a:hover {
    color: #fff;
}

.newsletter-box {
    display: flex;
    gap: 10px;
}

.newsletter-box input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 15px;
}

.newsletter-box input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-box button {
    background: linear-gradient(135deg, #ff00ff, #0066ff);
    border: none;
    color: #fff;
    padding: 10px 18px;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: #00ff88;
    color: #000;
}

.contact-section{
    padding:80px 20px;
    background: #0f0f1a;
    color:white;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.contact-header{
    text-align:center;
    margin-bottom:40px;
}

.contact-header h2{
    font-size:38px;
    font-weight:800;
    background: linear-gradient(135deg,#ff00ff,#0066ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-header p{
    color:#bbb;
}

/* Layout */
.contact-container{
    max-width:1100px;
    margin:auto;
}

.contact-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

/* Glass Card */
.glass{
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:18px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    transition:0.3s;
}

.glass:hover{
    transform: translateY(-5px);
    border:1px solid rgba(255,0,255,0.4);
}

/* Inputs */
.contact-card input,
.contact-card textarea{
    width:100%;
    margin-top:12px;
    padding:12px;
    border:none;
    border-radius:10px;
    outline:none;
    background: rgba(255,255,255,0.08);
    color:white;
}

.contact-card textarea{
    resize:none;
}

/* Button */
.contact-card button{
    width:100%;
    margin-top:15px;
    padding:12px;
    border:none;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
    color:white;
    background: linear-gradient(135deg,#ff00ff,#0066ff);
    transition:0.3s;
}

.contact-card button:hover{
    transform:scale(1.03);
    opacity:0.9;
}

/* WhatsApp */
.whatsapp-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 15px;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
}
/* FIX TEXT VISIBILITY IN GET IN TOUCH */
.contact-card h3,
.contact-card p,
.contact-card .info p {
    color: #ffffff;
}

/* Make sure background is dark enough for readability */
.glass {
    background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.contact-card .info p {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FIX CONTACT INFO TEXT VISIBILITY */
.contact-card .info p {
    color: #ffffff !important;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Optional: make labels stand out more */
.contact-card .info p strong {
    color: #ff00ff;
}

.contact-card h3,
.contact-card p,
.contact-card .info p {
    color: #ffffff;
}

.contact-card .info p {
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 10px;
}

/* DARK INFO PANEL */
.contact-card .info{
    background: linear-gradient(135deg, #0b0b16, #151528);
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 15px;
}

/* MAKE TEXT CLEAR */
.contact-card .info p{
    color: #ffffff;
    margin: 10px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* OPTIONAL: ICON HIGHLIGHT COLOR */
.contact-card .info p::first-letter{
    color: #ff00ff;
    font-weight: bold;
}


/* MAIN BOX (already dark, keep or reuse yours) */
.contact-card .info{
    background: linear-gradient(135deg, #0b0b16, #151528);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 15px;
}

/* EACH ROW */
.contact-card .info-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* REMOVE LAST BORDER */
.contact-card .info-item:last-child{
    border-bottom: none;
}

/* ICON STYLE */
.contact-card .icon{
    font-size: 18px;
    width: 28px;
    text-align: center;
}

/* TEXT STYLE */
.contact-card .text{
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
}



/* INFO BOX */
.contact-card .info{
    background:#0f0f1a;
    padding:18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.08);
    margin-bottom:15px;
}

/* INFO ROWS */
.contact-card .info-row{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 0;
    color:#fff;
    font-size:15px;
}

/* ICON COLOR */
.contact-card .icon{
    color:#ff00ff;
    width:22px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
    display:block;
    text-align:center;
    margin-top:10px;
    padding:12px;
    border-radius:10px;
    background:#25D366;
    color:white;
    text-decoration:none;
    font-weight:600;
}

/* FORM BUTTON (KEEP YOUR GRADIENT) */
.contact-card button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#ff00ff,#0066ff);
    color:white;
    font-weight:bold;
    margin-top:10px;
}