/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}
body {

text-shadow: 8px 8px 10px #0000008c;
background-color: #343a40;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%239C92AC' fill-opacity='0.10' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(to right top, #343a40, #2b2c31, #211f22, #151314, #000000);
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
 padding:1rem;
}

.section__title {
  font-size:30px;
  color: #FFF;
  margin-bottom: 1.5rem;
}

.section__height {
  min-height: 100vh;
}

/*=============== LAYOUT ===============*/
.container {
  max-width: 968px;
  color:#FFFFFF;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;	
  z-index: var(--z-fixed);
  transition: .4s;
  background:#FFF;
  padding:0 20px;
}
.page-container {
    text-align: left;
    padding:100px 20px;
    margin-top: 15px;
    line-height: 22px;
    font-size: 14px;
    position: relative;
    box-shadow: 1px 2px 15px #48484833;
    background: var(--theme-color); 
    overflow: hidden;
    word-break: break-word; color:#fff;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
  display:none;
}

.nav__logo {
  color: var(--title-color);
  font-weight: 600;

}
.company_logo
{
	border:5px solid #FFFFFF;
	border-radius:20% ;
	background:#FFFFFF;
}
.profile_pic
{
	border:5px solid #FFFFFF;
	border-radius:50% ;
	background:#FFFFFF;
	margin-bottom:16px;
}
.iconbtn img
{
	width:40px;
	height:40px;
	margin:16px;
}
.share-whatsapp {
    text-align: left;
    display: flex; margin-bottom:10px;
}

.share-whatsapp input {
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 11px;
    outline: none;
    font-size: 14px;
    width: 100%;
    color: #fff;
    border-radius: 3px;
	padding-left: 40px;
}
  
.share-whatsapp input::placeholder {
  color: #fff;
  font-size: 14px;
  opacity: 1; /* Firefox */
}  
.whatsapp-btn {
    -webkit-appearance: none;
	padding:10px;
    font-size: 16px;
    background-color: #fff;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 251, 251, 0.1) inset;
    display: flex;
    align-items: center; border-radius:0 3px 3px 0;
	color:#333399;
}

.whatsapp-btn img {
    margin-right: 16px;
}

.input-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.input-wrapper label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #fff;
    font-size: 14px;
}

.shadow-btn {
    display: flex;
    justify-content: center;
	margin: 0px -5px;
}
.contact-table td {
    padding: 5px 0; text-align: left;
}

.contact-icon {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 50px;
    color:#333399;
    background-color: #ffffff;
    font-size: 16px;
    border-radius: 5px;
	padding:5px;
}

.contact-text {
    color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    word-break: break-word;
}

.shadow-btn a {
    padding: 10px 2px;
    font-size: 12px;
    color: #ffffff;
    margin: 5px;
    background: transparent;
    flex: 1;
    border: 2px solid #fff;
    display: inline-block;
	text-transform:uppercase; border-radius:3px;
}

#about p{
	line-height:26px;
	text-align:justify;
	font-size:16px;
}
/* Card  Starts */
.card {
    text-align: left;
    background-color: #fff;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 251, 251, 0.1) inset;
   color:#555555;
}

.card .card-title {
    font-size: 15px;
    text-align: left;
	font-weight:bold;
	color:#000000;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}
/* Card  Completed */

/* Gallery  Starts */
.images-container {
    column-count: 2;
    -webkit-column-count: 2;
    column-gap: 5px;
    -webkit-column-gap: 5px;
	float:left;
}

.images-container .image-wrapper {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    padding: 3px;
}

.images-container .image-wrapper img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: 0.3s; border:1px solid #f5f5f5;
}

.images-container .image-wrapper img:hover {
    opacity: 0.7;
}
/* Gallery Completed */
/* Modal popup Start */

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.close {
    position: absolute;
    top: 0px;
    right: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight:600;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* Modal popup Completed */
/* Feedback form  start */
/*shows the stars side by side, centered, and in reverse order than the HMTL*/
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  padding:16px 0;
}

/*hides the radio buttons*/
.rating > input{ display:none;}

/*style the empty stars, sets position:relative as base for pseudo-elements*/
.rating > label {
  position: relative;
  width: 1.1em;
  font-size:30px;
  color: #FFD700;
  cursor: pointer;
}

/* sets filled star pseudo-elements */
.rating > label::before{ 
  content: "\2605";
  position: absolute;
  opacity: 0;
}
/*overlays a filled start character to the hovered element and all previous siblings*/
.rating > label:hover:before,
.rating > label:hover ~ label:before {
  opacity: 1 !important;
}

/*overlays a filled start character on the selected element and all previous siblings*/
.rating > input:checked ~ label:before{
  opacity:1;
}

.rating > input.active ~ label:before{
  opacity:1;
}

/*when an element is selected and pointer re-enters the rating container, selected rate and siblings get semi transparent, as reminder of current selection*/
.rating:hover > input:checked ~ label:before{ opacity: 0.4; }

.product-enquiry-btn {
    padding: 7px 10px;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    background: #330066;
    border-radius:5px;
}

/* Product css completed */

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 4rem;
    padding:0 1rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
	padding-top:20px;
  }
}

.nav__list, 
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: var(--tiny-font-size);
  /* display: none;*/ /* Minimalist design, hidden labels */
}

.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color:#FF0000;
  transition: .3s;
}

/* Minimalist design, active link */
/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }
  
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }
  
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
  }
  .nav__img {
    display: none;
  }
  .nav__icon {
    display: none;
  }
  .nav__name {
    font-size: var(--normal-font-size);
    /* display: block; */ /* Minimalist design, visible labels */
	color:#000;
  }
  .nav__link:hover {
    color: var(--first-color);
  }

  /* First design, remove if you choose the minimalist design */
  .active-link::before {
    content: '';
    position: absolute;
    bottom: -.75rem;
    width: 4px;
    height: 4px;
    background-color:#FF0000;;
    border-radius: 50%;
  }

  /* Minimalist design */
  /* .active-link::before{
      bottom: -.75rem;
  } */
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

/*!
 * Star Rating
 * @version: 3.1.4
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://github.com/pryley/star-rating.js
 * @license: MIT
 */
.gl-star-rating[data-star-rating] {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 6px;
}

.gl-star-rating[data-star-rating] > select {
  overflow: hidden;
  visibility: visible !important;
  position: absolute !important;
  top: 0;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: circle(1px at 0 0);
          clip-path: circle(1px at 0 0);
  white-space: nowrap;
}

.gl-star-rating[data-star-rating] > select::before,
.gl-star-rating[data-star-rating] > select::after {
  display: none !important;
}

.gl-star-rating-ltr[data-star-rating] > select {
  left: 0;
}

.gl-star-rating-rtl[data-star-rating] > select {
  right: 0;
}

.gl-star-rating[data-star-rating] > select:focus + .gl-star-rating-stars::before {
  opacity: 0.5;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  outline: dotted 1px currentColor;
  pointer-events: none;
}

.gl-star-rating-stars {
  position: relative;
  display: inline-block;
  height: 26px;
  vertical-align: middle;
  cursor: pointer;
}

.gl-star-rating-stars > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-image: url(../img/star-empty.svg);
  margin: 0 4px 0 0;
}

.gl-star-rating-stars > span:last-of-type {
  margin-right: 0;
}

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars > span {
  margin: 0 0 0 4px;
}

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars > span:last-of-type {
  margin-left: 0;
}

.gl-star-rating-stars.s10 > span:nth-child(1),
.gl-star-rating-stars.s20 > span:nth-child(-1n+2),
.gl-star-rating-stars.s30 > span:nth-child(-1n+3),
.gl-star-rating-stars.s40 > span:nth-child(-1n+4),
.gl-star-rating-stars.s50 > span:nth-child(-1n+5),
.gl-star-rating-stars.s60 > span:nth-child(-1n+6),
.gl-star-rating-stars.s70 > span:nth-child(-1n+7),
.gl-star-rating-stars.s80 > span:nth-child(-1n+8),
.gl-star-rating-stars.s90 > span:nth-child(-1n+9),
.gl-star-rating-stars.s100 > span {
  background-image: url(../img/star-full.svg);
}

.gl-star-rating-text {
  display: inline-block;
  position: relative;
  height: 26px;
  line-height: 26px;
  font-size: 0.8em;
  font-weight: 600;
  color: #fff;
  background-color: #1a1a1a;
  white-space: nowrap;
  vertical-align: middle;
  padding: 0 8px 0 6px;
  margin: 0 0 0 12px;
}

.gl-star-rating-text::before {
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-width: 13px 12px 13px 0;
  border-color: transparent #1a1a1a transparent transparent;
}

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text {
  padding: 0 6px 0 12px;
  margin: 0 12px 0 0;
}

.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text::before {
  left: unset;
  right: -12px;
  border-width: 13px 0 13px 12px;
  border-color: transparent transparent transparent #1a1a1a;
}