
:root {
  --white-color:                #FFFFFF;
  --primary-color:              #015876;
  /* --primary-color:              #023548; */
  --section-bg-color:           #FFFFFF;
  --dark-color:                 #000000;
  --grey-color:                 #d0d1d1;
  --p-color:                    #717275;

  /* --body-font-family:           'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', 'sans-seri' !important; */



  --h5-font-size:               24px;
  --p-font-size:                20px;
  --copyright-text-font-size:   16px;
  --product-link-font-size:     14px;
  --custom-link-font-size:      12px;

  --font-weight-thin:           100;
  --font-weight-light:          300;
  --font-weight-normal:         400;
  /* --font-weight-bold:           700;
  --font-weight-black:          900; */
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}
.video-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family) !important;    
    position: relative;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Non-prefixed version, currently supported by Chrome, Opera */
}
body::-webkit-scrollbar{
  display: none;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
@font-face {
  font-family: 'General Sans';
  src: url('fonts/GeneralSans-Regular.woff2') format('woff2'),
       url('fonts/GeneralSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ranade';
  src: url('fonts/Ranade-Regular.woff2') format('woff2'),
       url('fonts/Ranade-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Regular.woff2') format('woff2'),
       url('fonts/Geist-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'General Sans', sans-serif;
}

h1 {
  font-family: 'Montserrat', sans-serif;
}

p {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
}

.custom-text {
  font-family: 'Ranade', serif !important;
}

.special-heading {
  font-family: 'Geist', sans-serif;
}

.pointsStyle{
  font-family: 'Montserrat', sans-serif;
}

.fontStyle{
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
}
.boxBottom{
  background: var(--grey-color);
  box-shadow: #000000;
  margin: 10px;
  padding: 20px;
}
.boxBottom i{
  font-size: 30px;
}
.boxBottom p{
  margin-top: -5px !important;
}
.ulDesign li {
  background-color: whitesmoke;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 5px 10px;
  /* border-radius: 5px; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.blogTitle:hover{
  cursor: pointer;
  color: var(--primary-color);
}



/* Hover Effect */
.ulDesign li:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

/* Subtle Background Shine Animation */
 li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease-in-out;
}

.ulDesign li:hover::before {
  left: 100%;
}

/* Fade-in effect when appearing */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ulDesign li {
  animation: fadeInUp 0.5s ease-in-out;
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out; /* Slow transition */}

.scroll-fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideInLeft {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Initially hidden */
.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* When element enters viewport, animate */
.scroll-slide-left.show {
  opacity: 1;
  transform: translateX(0);
}


.Apple {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-color);
  margin-top: 20px;
}
.Medium{
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--primary-color);
}

.Airbnb {
  font-family: "Lora", "Merriweather", serif;
  /* font-size: 18px; */
  font-weight: 400;
  line-height: 1.7;
  /* color: white; */
  letter-spacing: 0.2px;
}
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-weight: var(--font-weight-bold); */
  /* font-family: var(--body-font-family) !important */
}

h1,
h2 {
  font-weight: var(--font-weight-black);
  /* font-family: var(--body-font-family) !important */
}
.h2{
  /* font-family: var(--body-font-family) !important;  */
}
h1 {
  font-size: 64px;
  line-height: normal;
}

h2 {
  font-size: 42px;

}

h3 {
  font-size: 22px;
  /* font-weight: var(--font-weight-black); */
  /* font-family: var(--body-font-family) */
}

h4 {
  font-size: 32px;
  font-weight: var(--font-weight-black) !important;
  /* font-family: var(--body-font-family) */
}

h5 {
  font-size: 24px;
  font-weight: var(--font-weight-black) !important;
  /* font-family: var(--body-font-family) */
}

h6 {
  font-size: 17px;
  font-weight: var(--font-weight-black) !important;
  /* font-family: var(--body-font-family) !important */
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.text-primary {
  color: var(--primary-color) !important;
  font-family: var(--body-font-family) !important
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}



.animateImg {
  animation: flashPopup 2s ease-in-out infinite;
}

.animateImgSlow {
  animation: flashPopup 6s ease-in-out infinite;
}

@keyframes flashPopup {
  0% {
      opacity: 0;
      transform: scale(0.5);
  }
  50%, 70%, 90% {
      opacity: 1;
      transform: scale(1.1);
  }
  100% {
      opacity: 0;
      transform: scale(1);
  }
}


.animateText {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif !important;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 4s steps(30) infinite; /* Infinite loop */
  color: #FFFFFF;
}

.animateText span {
  display: inline-block;
  opacity: 0;
  animation: appear 0.5s forwards;
  animation-delay: var(--char-delay);
}

/* Optional: Reset span opacity after a full cycle */
@keyframes typing {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Character appear animation */
@keyframes appear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}






.custom-link {
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}

.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transition: all 0.3s;
  line-height: normal;
}

.custom-link:hover i {
  opacity: 1;
  left: 101%;
}

.lead {
   font-weight: bold;
  font-weight: #000 !important;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -23px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}


.custom-btn {
  background: var(--dark-color);
  border-radius: 50px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  text-transform: uppercase;
  padding: 16.50px 20px;
}

.social-btn {
  background: transparent;
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  text-transform: none;
}

.social-btn:hover {
  border-color: transparent;
}

.cart-form-select {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cart-btn {
  border-radius: 0;
  width: 100%;
  font-size: var(--product-link-font-size);
}

.custom-btn:hover,
.slick-slideshow .custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.slick-slideshow {
position: relative;
top: -86px !important;
}
.custom-icon {
  color: var(--p-color);
  font-size: 24px;
}

.custom-icon {
  display: inline-block;
  vertical-align: middle;
}

.bi-bag.custom-icon {
  font-size: 17px;
}

.featured-icon {
  color: var(--grey-color);
  font-size: 52px;
}


.div-separator {
  position: relative;
}

.div-separator::before {
  content: "";
  height: 1px;
  background: var(--grey-color);
  display: block;
  width: 100%;
}

.div-separator span {
  position: absolute;
  top: 50%;
  margin-left: -22.5px;
  left: 50%;
  text-align: center;
  background: var(--white-color);
  margin-top: -11px;
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  width: 35px;
  text-transform: uppercase;
}


.full-image-img {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  bottom: -120px;
  min-width: 650px;
}

@media (min-width: 1600px) {
  .full-image-img {
    bottom: -200px;
  }
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/



.containerd{
  display: flex;
  justify-content: space-between;

}
.containerd, .navbar {
  overflow: visible !important;
}


.navbar {
 
  background: var(--white-color);
    z-index: 1050; 
  
}

.dropdown-menu {
  position: absolute;
  z-index: 1050 !important; /* Ensures it stays on top */
}

.navbar span, h2 span, h4 span {
	color: var(--primary-color);
}

.navbar.headroom--not-top {
  padding: 0px 0;
}

.headroom--pinned {
  transform: translate(0, 0);
}

.headroom--unpinned {
  transform: translate(0, -150%);
}

.navbar-brand {
  color: var(--dark-color);
  font-size: 23px;
  font-weight: var(--font-weight-light);
  margin: 0;
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  display: flex;
  padding: 0;
  width: 100%;
  margin-right: 25px;
  /* margin-left: 20px; */
  font-family: var(--body-font-family) !important;

}


.nav-link {
  color: var(--p-color);
  font-size: 14px;
  position: relative;
  font-family: var(--body-font-family) !important;
  font-weight: bold;
  z-index: 9999;
}

.navbar .nav-link::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grey-color);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

/* .navbar-nav .dropdown-menu {
  display: none; 
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block; 
} */

.nav-link:focus, 
.nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
  /* margin-top: 16px;Apple */
}

.site-header.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.site-header.section-padding-img {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}


.enquiry-btn {
  position: fixed;
  top: 30%;
  right: 15px;
  transform: translateY(-50%) rotate(270deg);
  transform-origin: right center;
  background-color:darkred;
  color: white;
  border: none;
  padding: 8px 20px;
  font-size: 16px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  z-index: 9999;
}

.enquiry-btn:hover {
  background-color: #e64a19;
}


/*---------------------------------------
  SLICK SLIDESHOW               
-----------------------------------------*/
@media (min-width: 992px) {
  .slick-slideshow {
    height: 100vh;
  }
}

.slick-slideshow {
  margin-top: 86px;
}

.slick-title {
  color: var(--primary-color);
  /* font-family: 'Poppins', sans-serif !important; */
  font-family: 'Ranade', serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  line-height: 1.2; /* Optional - helps with better spacing */
}
.sub-title {
  color: white;
  /* font-family: 'Poppins', sans-serif !important; */
  font-family: 'Ranade', serif !important;
  font-size: 30px !important;
  font-weight: bold !important;
  line-height: 1.2; /* Optional - helps with better spacing */
}
.content-head {
  color: var(--primary-color);
  /* font-family: 'Poppins', sans-serif !important; */
  font-family: 'Ranade', serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1.2; /* Optional - helps with better spacing */
}



.slick-custom {
  position: relative;
}

.slick-custom img {
  width: 100%;
  object-fit: cover;
}

.slick-bottom {
  /* background: linear-gradient(to top, var(--dark-color), transparent 50%); */
  position: absolute;
  /* z-index: 2; */
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-bottom .container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}

.slick-overlay {
  background: linear-gradient(to top, #000, transparent 120%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slick-slideshow .custom-btn {
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding-right: 32px;
  padding-left: 32px;

}

@media (min-width: 576px) {
  .slick-slideshow .slick-dots {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .slick-slideshow .slick-dots {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .slick-slideshow .slick-dots {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .slick-slideshow .slick-dots {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .slick-slideshow .slick-dots {
    max-width: 1320px;
  }
}

.slick-slideshow .slick-dots {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  margin: 0 auto;
  padding: 0;
}

.slick-slideshow .slick-dots li {
  background: transparent;
  border: 5px solid rgba(255, 255, 255, 0.35);
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px;
  padding: 5px;
  margin-left: auto;
  cursor: pointer;
}

.slick-slideshow .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  outline: none;
  height: 0;
}

.slick-slideshow .slick-dots li:hover,
.slick-slideshow .slick-dots .slick-active {
  background: var(--white-color);
}

/*---------------------------------------
  CUSTOM CIRCLE IMAGES               
-----------------------------------------*/

.custom-circle-image {
  border-radius: 100px;
  width: 55px;
  height: 55px;
}

.custom-circle-image.team-image {
  width: 85px;
  height: 85px;
}

/*---------------------------------------
  TESTIMONIAL               
-----------------------------------------*/
.slick-testimonial .slick-list,
.slick-testimonial .slick-track {
  height: 100%;
}

.slick-testimonial {
  margin: auto;
}

.slick-testimonial-caption {
  quotes: '❝' '❞';
  position: relative;
  padding: 5rem 7rem;
}

.slick-testimonial-caption::before {
  content: open-quote;
  display: inline-block;
  color: var(--primary-color);
  font-family: auto;
  font-size: 100px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-testimonial .slick-dots {
  text-align: center;
}

.slick-testimonial .slick-dots li {
  background: var(--grey-color);
  display: inline-block;
  vertical-align: top;
  width: 16%;
  height: 1px;
}

.slick-testimonial .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.slick-testimonial .slick-dots li:hover,
.slick-testimonial .slick-dots .slick-active {
  background: var(--dark-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.featured {
  background: var(--section-bg-color);
}

/*---------------------------------------
  ABOUT               
-----------------------------------------*/
.about .nav-pills .nav-item {
  width: 100%;
}

.about .nav-pills .nav-link {
  color: var(--grey-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-left: 1px solid var(--grey-color);
  border-radius: 0;
  padding-right: 0;
}

.about .nav-pills .nav-link:hover,
.about .nav-pills .nav-link.active, 
.about .nav-pills .show>.nav-link {
  background: transparent;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

/*---------------------------------------
  FAQ ACCORDION               
-----------------------------------------*/
.accordion-item {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: var(--primary-color);
}

button:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}

.accordion-body {
  border-top: 1px solid rgba(0,0,0,.125);
}

.accordion-button {
  font-size: 1.5rem;
  font-weight: var(--font-weight-normal);
  padding-top: 1.5rem;
  padding-right: 0;
  padding-bottom: 1.5rem;
  padding-left: 0;
}

.accordion-body {
  padding: 2rem 0;
}
.accordion-body p{
  font-size: 14px;
  font-weight: bold;
}



/*---------------------------------------
  TEAM MEMBERS               
-----------------------------------------*/
.team {
  background: var(--grey-color);
}

.team-thumb {
  background: var(--white-color);
  position: relative;
  border-radius: .25rem;
  padding: 42px 32px;
}

.team-info {
  width: 100%;
}

.custom-modal-btn {
  background: var(--grey-color);
  color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 32px;
  width: 42px;
  height: 42px;
}

.modal-body {
  padding: 4rem;
}

.modal-header {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  margin: 32px;
}

#cart-modal .modal-header .btn-close {
  z-index: 2;
  margin: 22px;
}

#cart-modal .modal-header {
  border-bottom: 0;
  padding: 0;
}

#cart-modal .modal-footer {
  padding: 2rem 4rem;
}

/*---------------------------------------
  SKILL - PROGRESS BAR               
-----------------------------------------*/
.skill-thumb strong {
  display: inline-block;
  margin-bottom: 6px;
}

.skill-thumb span {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.skill-thumb .progress {
  background: var(--white-color);
  box-shadow: none;
  border-radius: 100px;
  height: 1px;
  margin-bottom: 16px;
}

.skill-thumb .progress .progress-bar-primary {
  background: var(--grey-color);
}

/*---------------------------------------
  PRODUCT               
-----------------------------------------*/
.front-product {
  background: var(--grey-color);
  margin: 30px 0px;
  padding: 10px 30px;
}

.product-thumb {
  background: var(--white-color);
  border: 1px solid;
  position: relative;
  transition: all 0.5s ease-out;
  height: 500px;
  
}
.product-thumb2 {
  background: var(--white-color);
  border: 1px solid;
  position: relative;
  transition: all 0.5s ease-out;
  /* height: 500px; */
  
}

.product-image {
  transition: all 0.5s ease-out;
  height: 300px;
  width: 100%;
}

.product-thumb:hover .product-image {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.product-thumb2:hover .product-image {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.product-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.product-info {
  padding: 30px 20px;
}

.product-description,
.product-cart-thumb {
  padding: 0 20px;
}

.product-icon {
  color: var(--white-color);
}

.product-title-link {
  color: var(--dark-color);
}

.product-additional-link {
  display: inline-block;
  vertical-align: top;
  font-size: var(--product-link-font-size);
  margin-top: 32px;
  margin-right: 12px;
}

.product-alert {
  background: var(--white-color);
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  padding: 3px 10px;
}

.product-p {
  font-size: 16px !important;
  font-size: var(--product-link-font-size);
}

.view-all {
  text-transform: uppercase;
  color: var(--p-color);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  border-bottom: 2px solid var(--grey-color);
  padding-bottom: 6px;
}



.dropdown-item:focus, 
.dropdown-item:active {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    z-index: 9999;
    
}





/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-color: var(--grey-color);
  font-weight: var(--font-weight-normal);
  background-color:#015976e0;
}

.form-floating>label {
  color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.contact-form button[type='submit'] {
  background: var(--grey-color);
  border: none;
  border-radius: 100px;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
  color: white;
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--primary-color);
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.site-footer p{
  font-family: "Lora", "Merriweather", serif !important;
  font-size: 14px;
  color: #ddd4d4;
  font-weight: 500;
}

.cc{
  text-align: center;
  color: white;
  
}
.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  display: block;
  width: 50%;
}

.footer-menu-link {
  color: #ddd4d4;
  font-weight: var(--font-weight-light);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 14px;
}

.site-footer .social-icon-link {
  margin-top: 4px;
  color: #FFFFFF;
}

.site-footer .social-icon-link:hover,
.footer-menu-link:hover {
  color: #FFFFFF;
  cursor: pointer;
}

.copyright-text {
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: #6c757d;
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
    margin-bottom: 0;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .lead {
    font-size: 16px;
    font-weight: #000 !important;
    font-size: var(--product-link-font-size);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-top: 1rem;
  }

  .site-header {
    background-position: bottom;
    background: var(--primary-color);
  }

  #cart-modal .modal-header .btn-close {
    margin: 22px 14px;
  }

  .custom-btn {
    font-size: 14px;
    padding: 13.5px 20px;
  }

  .slick-slideshow .custom-btn {
    padding-right: 27px;
    padding-left: 27px;
  }

  .social-login,
  .div-separator {
    width: 75% !important;
  }

  #cart-modal .modal-footer .row {
    width: 100% !important;
  }

  .site-header.section-padding,
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .site-header-image.section-padding {
    padding-bottom: 0;
  }

  .header-info {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .header-image {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }

  .slick-testimonial-caption {
    padding: 6rem 3rem 4rem 3rem;
  }

  .slick-slideshow .slick-dots li {
    width: 25px;
    height: 25px;
  }

  .modal-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .modal-body {
    padding: 2rem;
  }

  #cart-modal .modal-footer {
    padding-right: 0;
    padding-left: 0;
  }

  #cart-modal .modal-body {
    padding: 4rem 2rem 2rem 2rem;
  }

  .full-image-img {
    bottom: 0;
  }
}

.navbar-brand img{
  width: 350px;
  height: 87px;
  margin-right: 20px;
}

.allPageHeader{
background: var(--primary-color);
padding: 30px 100px;
}
.contentP{
 font-size: 18px;color: #000;
}

.col-6Mobile{
  background: var(--primary-color);
  color: white;
  padding: 20px;
  margin: 70px 30px 0px 20px;
  border-radius: 5px;
}

.enquiryCol6{
  margin-top: 80px;
}
.contactUs{
  background-color: var(--primary-color);
  padding: 5px 1px 5px 10px;
  border-radius: 5px;
  font-size: 16px;
}

.sveImg{
  margin-top: 10px;
  width: 500px;
}
.events{
  margin-top: 85px;
}

@media screen and (max-width: 491px) {
  .navImg{
    display: none !important;
  }
 .navbar-brand img{
  width: 250px;
  height: 87px;
  margin-right: 0px;
 }
 .navbar-toggler{

  margin-left: 20%;
  margin-top: 20px;
 }

 .containerd{
  display: block;
  justify-content: space-between;
  padding: 10px;

}

.slick-title {

  font-family: 'Ranade', serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;

}
.slick-bottom p{
  font-size: 10px !important;
}
.sub-title {
 
  font-size: 17px !important;
 
}
.site-header.section-padding {
  padding-top: 0;
  padding-bottom: 3rem;
}
.site-header.section-padding, .section-padding{
  padding-top: 0;
  padding-bottom: 3rem;
}
.special-heading{
  margin-top: 10px;
}
.px-5 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.product-p {
  font-size: 13px !important;
  font-size: var(--product-link-font-size);
}

.allPageHeader{
  background: var(--primary-color);
  padding: 30px 10px;
  }
  .allPageHeader p{
    font-size: 14px;
  }
  .contentP{
    font-size: 13px;color: #000;
   }

   .col-6Mobile{
    background: var(--primary-color);
    color: white;
    padding: 20px;
    margin: 25px 30px 0px 20px;
    border-radius: 5px;
  }
  .header-info {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .content-head {
   
    font-size: 15px !important;
   
  }
 
  
  
  .enquiryCol6{
    margin-top: 10px;
  }
  .contactUs{
    margin-top: 10px;
    padding: 0px 1px 5px 10px;
  }
  .productPageHead{
   font-size: 20px;
  }
  .sveImg{
    margin-top: 10px;
    width: 350px;
  }
  .site-footer img{
    display: none;
  }
  .product-info {
    padding: 10px 10px !important;
  }
  .product-thumb {
  
    height: 430px;
}
@media (max-width: 768px) {
  .dropdown-menu {
      width: 100%;
      left: 0 !important;
      right: 0 !important;
      position: absolute;
      top: 100%;
      z-index: 1000;
      background-color: white;
      border: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .dropdown-item {
      padding: 12px 15px;
      font-size: 12px;
  }

  /* Make dropdown scrollable if needed */
  .dropdown-menu {
      max-height: 300px;
      overflow-y: auto;
  }
  .py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

}
@media (max-width: 768px) {
  .nav-item.dropdown .dropdown-menu {
      display: block !important;
      position: static;
      background: none;
      border: none;
      box-shadow: none;
  }
  .dropdown-menu .dropdown-item {
      padding: 10px;
      background: #fff;
      border-bottom: 1px solid #ddd;
  }
}
}
