:root {
    --navy-blue: #06186a;
    --mid-blue: #2443ce;
    --light-blue: #70cddd;
    --box-shadow-blue: rgba(112,205,221,0.19);
    --primary-white: ghostwhite;
    --box-shadow: rgba(0, 0, 0, 0.2);
    --primary-black: #000;
    --faded-black: rgba(0, 0, 0, 0.6);
    --image-gray: #F0EFF4;
  } 
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .padding-two{
   padding: 10px 20px;
  }
  
  body {
    width: 100vw;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    position: relative;
    background-color: var(--primary-white);
  }
  /* nav section */
  .nav-bar {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-white);
    box-shadow: 0 0 5px var(--box-shadow);
  }
  .logo-div {
    width: 10%;
    height: 90px;
  }
  
  .logo-div img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .toggle-btn {
    display: none;
  }
  
  .link-section {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .links {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  
  .links .link a {
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333333;
    transition: 0.5s;
    font-weight: 400;
    transition: 0.5s;
  }
  
  .links .link a:hover {
    color: var(--mid-blue);
  }
  .links .link.preview a:hover + .catalogue-div{
   display: block;
  }


  /* generics  */
  .section-header{
    padding: 20px 0;
    font-size: 1.5rem;
    color: #222222;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 ;
}

/* container section */

.container-fluid{
    padding-top: 100px;
}

/* ---our products */
.product-category{
    font-size: 1rem;
    color: var(--light-blue);
    text-transform: uppercase;
}

.product-card{
    /* Adjust width and height to make the product cards bigger */
    width: 200px; /* Set the desired width */
    height: 350px; /* Set the desired height */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Change flex direction to row */
    align-items: center;
    justify-content: flex-start;
    margin-right: 20px; /* Add margin between products */
    margin-bottom: 20px;
}
.image-div{
    height: auto;
    width: 100%;
    overflow: hidden;
    
}
.image-div img{
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
  }
.image-div img:hover{
     transform: scale(1.05);
  }
  

.product-name{
    width: 100%;
    padding-top: 5px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight:400 ;
}



/* ---contact us--------- */
.contact-us{
    margin: 0;
    background-color: var(--navy-blue);
  }
  
  .map-row{
    margin: 10px 0 0 0;
    padding: 0;
  }
  
  .contacts-section-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  
  }
  
  .contacts-section-card i{
    color: var(--light-blue);
  }
  
  .contact-section-heading{
    font-size: 1.4rem;
    color: var(--primary-white);
    padding: 20px;
  }
  .contact-div{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: var(--primary-white);
    margin: 10px 0;
  }
  .contact-div-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
  }
  .quick-link{
    text-decoration: none;
    color: var(--primary-white);
    padding: 10px 5px;
  
  }
  
  
  .order-form{
    width: 90%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .form-input-c{
   width: 100%;
   height: 50px;
   border-radius: 20px;
   padding: 20px;
   margin-bottom: 20px;
  }
  
  .form-input-c:focus,
  .form-input-c:valid{
    outline: transparent;
  }
  
  .form-text-area{ 
    width: 100%;
    border-radius:10px ;
    margin-top: 20px;
    padding: 20px;
  }
  
  .form-text-area:focus,
  .form-text-area:valid{
    outline: transparent;
  }
  
  .place-order-btn{
    padding: 15px 40px;
    background-color: var(--mid-blue);
    color: var(--primary-white);
    border: none;
    margin: 20px;
    border-radius: 20px;
    transition: 0.5s;
  }
  
  .place-order-btn:hover{
    background-color: var(--light-blue);
    color: var(--primary-white);
  }
  
  .place-order-btn:active{
    transform: scale(0.8);
  }
  
  .footer-devider{
    width: 90%;
    height: 5px;
    background-color: var(--primary-white);
    margin: 0 auto;
  }
  
  .social-media-div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .social-links{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .social-links a{
    text-decoration: none;
    color: var(--primary-white);
    padding: 5px;
    font-size: 1.5rem;
  }
  
  .copyright{
    font-size: 0.8rem;
    color: var(--primary-white);
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }


  @media (max-width: 1000px){

  .footer-devider{
    width: 100%;
    height: 5px;
    background-color: var(--primary-white);
    margin: 0 auto;
  }
  .social-media-section{
    display: flex;
    flex-direction: column-reverse;
    align-items: center  ;
    justify-content: baseline;
  }
  .social-media-div{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  .social-links{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
        
  }