:root{
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
  /* --primary: #17a2b8; */
  --primary:  radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(229,245,255,1) 43%);
  --secondary: #28A455;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #555555;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Nunito", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



.sitenavbar{
    background: var(--primary);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-left: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
    
}
.sitenavbar .sitenavbar-brand{
    
    padding: 0;
}
.sitenavbar .sitenavbar-brand img{
    margin-left: 15%;
    width: 30%;
}
.sitenavbar .navbar-list{
    
    width: 100%;
}
.sitenavbar .navbar-list a{
    display: inline-block;
    color: #373839;
    text-decoration: none;
    text-transform: capitalize;
    padding: 0px 2vmin;
    font-weight: 600;
}

.sitenavbar .navbar-list a:hover{
    color: var(--secondary);
}
.active{
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);
}

.small-navbar{
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    width: 100%;
}

.small-menu-btn{
    padding: 5px;
    outline: none;
    border: none;
    background: #fff;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;

}

.sitenavbar-brand-small img{
    width: 100px;
}


.bgprimary{
    background: var(--primary);
}
.bgsecondary{
    background: var(--secondary);
}


.image-container {
    position: relative;
    display: inline-block;
  }
  
  .image-container img {
    display: block;
    width: 100%;
    height: auto;
  } 
  
  .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  .overlay h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .overlay p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .btn {
    background-color: var(--secondary);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }

  .owl-carousel .owl-item {
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
  }


  .center-border {
    position: relative;
    max-width: 600px;
    height: 120px;
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;  
    color: var(--dark);
  }

  /* Horizontal center border */
  .center-border::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 35%;
    width: 30%;
    height: 4px;
    background-color: rgb(255, 255, 255); /* Border color */
    transform: translateY(-50%); /* Center it vertically */
  }


  .center-border-dark {
    position: relative;
    max-width: 600px;
    height: 120px;
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;  
    color: var(--dark);
  }

  

  /* Horizontal center border */
  .center-border-dark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 35%;
    width: 30%;
    height: 4px;
    background-color: var(--secondary); /* Border color */
    transform: translateY(-50%); /* Center it vertically */
  }


  .spotlight{
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 500px;
   



  }

  .spotlight h1{
    text-align: center;
  }

  .spotlight p{
   
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight:600 ;
    text-align: center;
  }
  .spotlight .btn-go{
    width: 400px;
    height: 50px; 
    color: #fff;
    background-color: var(--dark);
    outline: none;
    border: none;
  }

  .spotlight .btn-go:hover{
    background-color: #343a40;
  }

  .product{
    padding: 0;
  }
  .product .col-md-4{
    padding: 10px;

  }

  

  .product-item .card{
    border-radius: 0;
    border: none;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
  }


  .product-item  .header {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
    color: var(--dark);
    text-align: center;
    
    width: 100%;
  }

  /* Hidden bottom border */
  .product-item .header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary); /* Border color */
    transition: width 0.4s ease;
  }

  /* Animate the border on hover */
   
  .product-item .card:hover {
    transform: translateY(-5px);  
   
  }

  .product-item:hover .header::after{
    width: 100%;
  } 
  .product-item:hover .header{
    color: var(--secondary);
  }
 

  .enq-form .col-md-6 .col-md-12{
    padding: 5vmin;
  }

  .enq-form input{

    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    background-color: var(--primary);
    height: 40px;
    border-bottom: 1px solid var(--success);
    color: var(--success);
    font-size: 1.1em;
    text-transform:capitalize;
    font-weight: 600;
  }

  .enq-form-btn{
    display: flex;
    justify-content: center;
  }

  .enq-form-btn button{
    background: var(--secondary);
    color: #fff;
    padding: 10px 20px;
    outline: none;
    border: none;
    margin-bottom: 25px;
  }

  .enq-form-btn button:hover{
    background: var(--success);
  }


  .product-item .card:hover .cat-img  {
    background: rgba(0, 0, 0, 0.35);
   
  }
  .product-item .card:hover .btn-down  {
    background: rgba(242, 242, 242, 1);
    color:var(--gray-dark)
   
  }

  .product-item .card:hover  i{

    color:var(--gray-dark)
   
  }

  


  /* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 600px) {
  .spotlight h1{
    font-size: 1.5em;
  }
  .spotlight .btn-go{
    width: 100%;
  }
  .center-border-dark{
    font-size: 1.5em;
  }
  .product{
    padding: 20px;
  }

  .cat-carousel{
    width: 100%;
  }
}




.slide-menu {
  position: fixed;
  /* display: none; */
  top: 60px;
  right: 0;
  width: 300px;
  height: 100%;
  z-index: 1000;
  background-color: #333;
  color: white;
    transform: translateX(100%); /* Hide the menu off-screen */
  transition: transform 0.3s ease;
}

.showslide {
  transform: translateX(0); 
   /* Slide in the menu */
}

.slide-menu ul {
  list-style: none;
  padding: 0;
}

.slide-menu li {
  padding: 15px;
  border-bottom: 1px dashed #fff;
}

.slide-menu li a{
  text-decoration: none;
  color:#fff;
  text-align: center;
}


.contact .card{
  border: none;
  border-radius: 0;
}



.carousel-caption {
  bottom: 10rem;
  z-index: 10;
}

