@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: greenyellow;
}

/* Preloader */
#loading {
  height: 100%;
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 99999999999999999;
  top: 0;
  /* width: 100%;
  height: 100vh; */
  /* background: #011015;
  position: relative; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-text {
  color: #fff;
  font-size: 12px;
}
.ring {
  height: 200px;
  width: 200px;
  /* border: 4px solid #fff; */
  border: 0px solid black;
  border-radius: 50%;
  position: absolute;
}
.ring:nth-child(1) {
  border-bottom-width: 8px;
  border-color: rgb(255, 0, 255);
  animation: rotate1 2s linear infinite;
}
.ring:nth-child(2) {
  border-right-width: 8px;
  border-color: rgb(0, 247, 255);
  animation: rotate2 2s linear infinite;
}
.ring:nth-child(3) {
  border-top-width: 8px;
  border-color: rgb(0, 255, 13);
  animation: rotate3 2s linear infinite;
}
@keyframes rotate1 {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes rotate3 {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

/* Header / Navbar CSS Start */
header {
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 200px;
  transition: 0.5s ease;
  background-color: #1b1b1b;
  font-family: "Montserrat", sans-serif;
}
.header {
  position: fixed;
  padding-top: 8px;
  z-index: 999;
}
header .brand {
  color: rgb(240, 177, 18);
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
}
header .brand span {
  color: pink;
  padding-left: 10px;
}
header .brand:hover {
  color: goldenrod; /* keep it same */
  text-shadow: 1px 1px #fff; /* keep same effect */
}

header .navigation {
  position: relative;
}
header .navigation .navigation-items a {
  position: relative;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}
header .navigation .navigation-items a::before {
  content: "";
  position: absolute;
  background: #e74a4a;
  width: 25px;
  height: 2px;
  bottom: -3px;
  left: 0;
  transition: 0.3s ease;
}
header .navigation .navigation-items a:hover::before {
  width: 100%;
}

.close-btn {
  display: none; /* initially hidden */
  cursor: pointer;
  z-index: 999999999999999999;
}
.close-btn img {
  width: 38px;
  height: 38px;
  padding-top: 5px;
  padding-bottom: 1px;
}

.productcategory {
  position: fixed;
  top: 73px;
  margin-left: -25px;
}

.productcategory .navigation-category .category-items a {
  position: relative;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 35px;
  transition: 0.3s ease;
  padding: 3px 20px;
  border-radius: 10px;
}
.productcategory .navigation-category .category-items .one {
  background-color: green;
}
.productcategory .navigation-category .category-items .two {
  background-color: rgb(225, 34, 17);
}
.productcategory .navigation-category .category-items .three {
  background-color: rgb(14, 3, 96);
}
.productcategory .navigation-category .category-items .four {
  background-color: rgb(221, 7, 206);
}
.productcategory .navigation-category .category-items .five {
  background-color: green;
}
.productcategory .navigation-category .category-items .six {
  background-color: rgb(203, 145, 11);
}
.productcategory .navigation-category .category-items .seven {
  background-color: rgb(10, 42, 226);
}

/* Header / Navbar CSS End */

/* Home Section Video Sliding CSS Start */

section {
  padding: 100px 200px;
}
.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: rgb(238, 36, 177);
}
.home::before {
  z-index: 777;
  content: "";
  position: absolute;
  background-color: rgba(118, 162, 239, 0.3);
  /* background-color: rgba(3, 96, 251, 0.3); */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home .content {
  z-index: 888;
  color: #fff;
  width: 90%;
  margin-top: 70px;
  display: none;
}
.home .content.active {
  display: block;
}
.home .content h1 {
  font-size: 2.5em;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 70px;
  margin-bottom: 10px;
}
.home .content h2 {
  font-size: 2em;
  font-family: "Montserrat", sans-serif;
  color: rgb(229, 22, 177);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 85px;
}

.home .media-icons {
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}
.home .media-icons a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6em;
  transition: 0.3s ease;
}
.home .media-icons a:not(:last-child) {
  margin-bottom: 20px;
}
.home .media-icons a:hover {
  transform: scale(1.3);
  color: #e74a4a;
}
.home video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-navigation {
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}
.slider-navigation .nav-btn {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}
.slider-navigation .nav-btn.active {
  background: #2696e9;
}

.slider-navigation .nav-btn:not(:last-child) {
  margin-right: 20px;
}
.slider-navigation .nav-btn:hover {
  transform: scale(1.6);
}
.video-slide {
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}
.video-slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}
/* Basic button styling */
.content a {
  display: block;
  color: inherit; /* Inherits color from parent */
  text-decoration: none; /* Removes underline */
  z-index: 888;
}
.content .btn {
  position: relative; /* Allows for positioning child elements (like the hover effect) */
  color: rgb(17, 17, 16); /* Button text color */
  font-size: 0.8rem; /* Font size */
  font-weight: 600; /* Bold text */
  text-transform: uppercase; /* Capitalizes all letters */
  letter-spacing: 3px; /* Adds space between letters */
  max-width: fit-content; /* Button width adapts to content */
  border: 1px solid #fff; /* Black border */
  padding: 15px 40px; /* Space inside the button */
  overflow: hidden; /* Hides any overflowing content */
  z-index: 1; /* Keeps button on top of the background */
}

/* Hover background effect */
.btn::before {
  content: ""; /* Adds an empty block to create the hover effect */
  position: absolute;
  bottom: 100%; /* Places it above the button initially */
  left: 50%; /* Centers it horizontally */
  transform: translateX(-50%);
  width: 200%; /* Creates a large circle effect */
  height: 200%;
  border-radius: 50%; /* Makes it a circle */
  background-color: white; /* Circle color */
  transition: 0.5s ease; /* Smooth transition */
  z-index: -1; /* Keeps it behind the button text */
}
/* Transition for the text inside the button */
.btn .text {
  transition: 0.25s ease;
}
/* Hidden secondary text (will appear on hover) */
.btn .text-2 {
  position: absolute;
  top: 100%; /* Initially hidden below the button */
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: black; /* Text color */
}
/* Hover effects */
.btn:hover::before {
  bottom: -50%; /* Moves the background circle into view */
}
.btn:hover .text-1 {
  transform: translateY(-40px); /* Moves the first text up */
}
.btn:hover .text-2 {
  top: 50%; /* Moves the second text into view */
  transform: translate(-50%, -50%); /* Centers it perfectly */
}
/* Secondary button background and text color */
.btn-secondary {
  /* background-color: rgb(206, 97, 97); */
  background: transparent;
  color: black;
}
.btn-secondary::before {
  background-color: rgb(53, 153, 225); /* Background circle color on hover */
}
.btn-secondary .text-2 {
  color: white; /* Secondary text color on hover */
}

/* Media Query */

@media (max-width: 1040px) {
  header {
    padding: 12px 20px;
  }
  header .brand {
    font-size: 1.8em;
    font-weight: 500;
  }
  section {
    padding: 100px 20px;
  }
  .home .content h1 {
    font-size: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 30px;
  }
  .home .content h2 {
    font-size: 1.3em;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .home .media-icons {
    right: 15px;
  }
  header .navigation {
    display: none;
    /* background-color: #cc15c3; */
  }
  header .productcategory {
    display: none;
    margin-left: 1px;
    z-index: 99;
  }
  header .navigation.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 120px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .productcategory.active {
    position: fixed;
    width: 100%;
    height: 50vh;
    top: 20px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .productcategory .navigation-category {
    justify-content: center;
    align-items: center;
  }
  .productcategory .category-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .productcategory .navigation-category .category-items a {
    margin-bottom: 10px;
    margin-left: 5px;
    font-size: 1em;
  }

  header .navigation .navigation-items a {
    color: #fff;
    font-size: 1.2em;
    letter-spacing: 3px;
    margin: 10px;
    z-index: 9999999999;
  }
  header .navigation .navigation-items a:before {
    background: transparent;
    height: 5px;
  }
  header .navigation.active .navigation-items {
    position: fixed;
    background-color: #0066ff;
    width: 90%;
    margin-top: -8px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    opacity: 1 !important;
    z-index: 99999;
  }

  .menu-btn {
    background: url("./image/toggleBtn/download.jpeg") no-repeat;
    background-size: 40px;
    color: #fff;
    background-position: center;
    width: 37px;
    height: 37px;
    padding-top: 4px;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    z-index: 999999999999;
  }
}
@media (max-width: 480px) {
  .header .brand {
    font-size: 13px;
  }
}

/* Shop By category style start */
.category-box {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.category-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Hover effect on image */
.category-link:hover .category-img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.section-title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
  color: #333;
  font-family: "Montserrat", sans-serif;
}

.category-link {
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

.category-link h5 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

/* Hover color for text */
.category-link:hover h5 {
  color: #d63384; /* Bootstrap pink */
}

/* Hint text style */
.category-box .hint {
  font-size: 13px;
  font-weight: 500;
  color: #d63384;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-left: 5px;
}
.category-link .hint i {
  font-size: 11px;
  color: #ff5733;
  margin-left: 2px;
}
@media (max-width: 480px) {
  .image-wrapper {
    margin-bottom: 2px;
  }
  .category-link h5 {
    margin-top: -30px;
  }
}

/* Shop By category style end */

/* Company Status style start */

.containerStatus {
  padding-left: 10px !important;
  padding-right: 10px !important;
  background: #fff !important;
}
.categoryStatus-box {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.categoryStatus-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}
.category-img {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.categoryStatus-box:hover .category-img {
  transform: scale(1.03);
}
@media (max-width: 480px) {
  .category-img {
    height: 200px;
  }
}

/* Company Status style end */

/* Sticky Navigation Bar on Scroll using Change Background */
header.changeBackgroundColor {
  /* background: rgb(225, 50, 50); */
  background: #151269;
  opacity: 0.7;
  border-bottom: 1px solid #fff;
  z-index: 1000000;
}
/* Default sticky navbar style */
header.changeBackgroundColor {
  background: #151269;
  opacity: 0.7;
  border-bottom: 1px solid #fff;
  z-index: 1000000;
}

/* On mobile view, override the opacity */
@media (max-width: 768px) {
  header.changeBackgroundColor {
    opacity: 1;
  }
}

.navbarAnotherPage {
  margin-bottom: 150px;
}
.navbarAnotherPage img {
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 300px;
  z-index: -1;
}
.navbarAnotherPage h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  padding-top: 180px;
  color: #faf8f8;
  text-shadow: 1px 1px #000;
}

/* 3D Image slider css start */
.container3D {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #000;
  transform-style: preserve-3d;
  overflow-x: hidden;
}
.box3d {
  position: relative;
  width: 250px;
  height: 250px;
  transform-style: preserve-3d;
  transition: 1.5s;
  transform: perspective(1500px) rotateY(0deg);
}
.box3d img {
  width: 200px;
  height: 200px;
}
.box3d span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg)) translateZ(400px);
  -webkit-box-reflect: below 0px
    linear-gradient(transparent, transparent, #0004);
}
.box3d span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.btnss {
  position: absolute;
  bottom: 50px;
  display: flex;
  gap: 30px;
  top: 87%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btnss .btnn {
  position: relative;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btnss .btnn:active {
  background: #fff;
}
.btnss .btnn::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translate(-2.5px, 2.5px);
}
.btnss .btnn.prevv::before {
  transform: rotate(225deg) translate(-2.5px, 2.5px);
}
.btnss .btnn:active::before {
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .box3d {
    width: 70vw;
    max-width: 250px;
  }

  .btnss .btnn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .box3d {
    width: 85vw;
    max-width: 200px;
    transform: perspective(800px) rotateY(0deg);
  }

  .btnss .btnn {
    width: 35px;
    height: 35px;
  }

  .btnss {
    bottom: 20px;
    gap: 15px;
  }

  .btnss .btnn::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  .btnss .btnn:active::before {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}

/* 3D Image slider css end */

/* Hotline call */
.pulse {
  height: 60px;
  width: 60px;
  background: linear-gradient(#8a82fb, #407ed7);
  /* position: absolute; */
  position: fixed;
  margin: auto;
  left: 6%;
  /* right: 0; */
  top: 60%;
  bottom: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0.8;
}
.pulse:hover a {
  color: greenyellow;
}
.pulse a {
  color: #ffffff;
  cursor: pointer;
  z-index: 9999999999;
}
.pulse:before,
.pulse:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #8a82fb;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}
.pulse:before {
  animation: pulse 1s ease-out infinite;
}
.pulse:after {
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* *********************************************************  
    Styling Contact Us 
********************************************************* */
/* Text Animation css start */
.text-animation {
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-top: 500px;
  height: 200px;
  padding: 100px;
  background: url("image/text-animation1.jpeg") center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  margin-top: 80px;
  margin-bottom: -50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  /* box-shadow: 0 0 15px rgba(7, 7, 7, 0.9); */
}
.text-animation .infinity-text {
  position: absolute;
  width: 100%;
  /* padding: 50px; */
}
.text-animation .infinity-text h1 {
  font-size: 90px;
  line-height: 165px;
  padding: 15px;
  background: url("image/back-animation.png");
  letter-spacing: 5px;
  color: transparent;
  -webkit-text-stroke: 2px rgb(251, 163, 177);
  /* -webkit-text-stroke: 2px #912121; */
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back 10s linear infinite;
}
@keyframes back {
  100% {
    background-position: 2000px 0;
  }
}

@media (min-width: 1400px) {
  .text-animation {
    margin-top: 164px;
  }
}
@media (max-width: 991px) {
  .text-animation {
    width: 100%;
    height: 150px;
  }
  .text-animation .infinity-text h1 {
    font-size: 110px;
  }
}
@media (max-width: 767px) {
  .text-animation {
    width: 100%;
    height: 150px;
  }
  .text-animation .infinity-text h1 {
    font-size: 90px;
  }
}
@media screen and (max-width: 560px) {
  .text-animation {
    width: 100%;
    height: 130px;
  }
  .text-animation .infinity-text h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 480px) {
  .text-animation {
    width: 100%;
    height: 100px;
    padding: 25px;
    margin-top: 30px;
    margin-bottom: -90px;
  }
  .text-animation .infinity-text {
    width: 100%;
  }
  .text-animation .infinity-text h1 {
    font-size: 35px;
    line-height: 45px;
    padding: 15px;
    letter-spacing: 5px;
    -webkit-text-stroke: 2px rgb(251, 163, 177);
  }
}

/* Text Animation css start */

/* Contact Us Page Styling start  */

/* **********************************************************
    Contact Us Page Map CSS Start
********************************************************** */
.contactPage {
  padding: 30px 40px;
  margin-bottom: 100px;
}
.contactPage h1 {
  text-align: center;
  margin-top: 100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #151269;
}
.contactPage .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
  justify-content: center;
}

.contactPage .row .image,
.contactPage .row .map {
  flex: 1 1 400px;
  max-width: 100%;
}

.contactPage .row .image img {
  width: 100%;
  height: auto;
  display: block;
}

.contactPage .row .map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contactPage {
    padding: 20px;
    margin-bottom: 20px;
  }

  .contactPage .row {
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    gap: 0.6rem;
  }

  .contactPage .row .image,
  .contactPage .row .map {
    width: 100%;
  }

  .contactPage .row .map iframe {
    height: 400px;
  }
}

@media (max-width: 460px) {
  .contactPage .row .map iframe {
    height: 350px;
  }
}

/* **********************************************************
    Contact Us Page Map CSS End
********************************************************** */

/* **********************************************************
    Form Contact Us Page CSS Start
********************************************************** */
.contact-section {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 800px;
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  margin-bottom: 60px;
}

.form-wrapper h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #333;
  margin-bottom: 25px;
  font-size: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4b7bec;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 12px;
  background-color: #4b7bec;
  font-family: "Montserrat", sans-serif;
  color: white;
  border: none;
  font-size: 1.3rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #3867d6;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-section {
    padding: 30px 20px;
  }

  .form-wrapper h2 {
    font-size: 1.8rem;
  }
}
/* **********************************************************
    Form Contact Us Page CSS End
********************************************************** */

/* **********************************************************
    Product Section Styling
********************************************************** */
.productgallery {
  position: relative;
  margin-bottom: 10px;
  font-family: "Ubuntu", sans-serif;

  width: 100%;
  max-width: 100%;
  padding: 0; /* Optional */
  margin: 0 auto; /* Center it if needed */
  display: block; /* Use block instead of flex for wrapping container */
}

section.productgallery {
  width: 100%;
  /* width: 100vw; */
}

.containerGallery {
  position: relative;
  background: #e6c0e2;
  margin-top: 10px;
  width: 100%;
}
.containerGallery .head h2 {
  font-family: "Montserrat", sans-serif;
  color: crimson;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 600;
  padding: 30px;
}

.containerGallery .gallery .box .details .content h2 {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #ff0;
  text-align: center;
}
.containerGallery .gallery .box .details .content h5 {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #fff;
  padding-top: 5px;
  text-align: center;
}
.containerGallery .gallery .box .details .content p {
  margin: 8px 0 0;
  padding: 0;
  text-align: center;
  /* text-align: justify; */
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

.containerGallery .gallery {
  position: relative;
  max-width: 100%;
  background: #e6c0e2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
  align-items: center;
  margin: auto;
  padding-bottom: 60px;
}
.containerGallery .gallery .box {
  position: relative;
  width: 250px;
  height: 250px;
  background: rgb(119, 119, 106);
  margin: 12px;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
}
.containerGallery .gallery .box .imgBox {
  position: relative;
}
.containerGallery .gallery .box .imgBox img {
  width: 250px;
  height: 250px;
  transition: transform 3s;
}
.containerGallery .gallery .box:hover .imgBox img {
  transform: scale(1.5, 1.5);
}
.containerGallery .gallery .box .details {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: crimson;
  opacity: 0.8;
  transform: scaleY(0);
  transition: transform 0.5s;
}
.containerGallery .gallery .box:hover .details {
  transform: scaleY(1);
}
.containerGallery .gallery .box .details .content {
  position: absolute;
  top: 50%;
  left: 0; /* Changed from 50% */
  width: 100%; /* Added to ensure it takes full width */
  transform: translateY(-50%); /* Changed to only vertical centering */
  /* padding: 50px; */
  color: #fff;
  text-align: center;
  padding: 0 20px; /* Add some horizontal padding to prevent text from touching edges */
  box-sizing: border-box; /* Ensures padding is included in the width */
}
/* .containerGallery .gallery .box .details .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
} */

@media (max-width: 600px) {
  .containerGallery .gallery .box {
    width: 90%;
    height: auto;
  }
  .containerGallery .gallery .box .imgBox img {
    width: 100%;
    height: auto;
  }
  .containerGallery .gallery .box .details .content p {
    font-size: 13px;
  }
}

/*** Footer Start ***/
.container-fluid {
  background-color: #3a0237;
}
.custom-footer-container {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
  transition: 0.5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
  letter-spacing: 1px;
}

.footer .hightech-link a:hover {
  background: var(--bs-secondary);
  border: 0;
}

/*** Footer End ***/

/* E-commerce products css starts */
/* Container */
.flex-box {
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
  margin: 20px auto;
  gap: 30px;
}

/* Left Section */
.left {
  width: 48%;
}
.big-img {
  width: 100%;
}
.big-img img {
  width: 100%;
  border-radius: 8px;
}
.images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 10px;
}
.small-img {
  width: 22%;
  overflow: hidden;
  border: 1.5px solid black;
  border-radius: 5px;
}
.small-img img {
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.small-img:hover img {
  transform: scale(1.2);
}

/* Right Section */
.right {
  width: 48%;
  padding-left: 30px;
}
.url {
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 102, 255);
}
.brand {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-top: 10px;
}
.brand span {
  color: #ff5e00;
}
.pname {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}
.ratings i {
  color: rgb(255, 136, 0);
  margin-right: 2px;
}

/* Description Section */
.desc {
  font-family: "Montserrat", sans-serif;
  margin: 20px 0;
}
.desc p {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  color: green;
}
.desc ul {
  padding-left: 20px;
}
.desc ul li {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}
.brief-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

/* Buttons */
.btn-box {
  display: flex;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-box button {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 10px 25px;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}
.whatsapp-btn {
  background-color: #25d366; /* WhatsApp green */
}
.whatsapp-btn:hover {
  background-color: #1ebe5b;
}
.call-btn {
  background-color: #007bff; /* Call button blue */
}
.call-btn:hover {
  background-color: #0056b3;
}

.cart-btn {
  background-color: #ff5e00;
}
.cart-btn:hover {
  background-color: #ff3c00;
}
.buy-btn {
  background-color: #00aeff;
}
.buy-btn:hover {
  background-color: #0066ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .right {
    width: 48%;
    padding-left: 1px;
  }
  .flex-box {
    flex-direction: column;
    width: 90%;
  }
  .left,
  .right {
    width: 100%;
  }
  .images {
    justify-content: space-around;
  }
  .small-img {
    width: 22%;
  }
  .btn-box {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-box button {
    width: 100%;
  }
  .desc ul {
    padding-left: 20px;
    padding-right: 10px;
  }
  .desc ul li {
    line-height: 1.5;
  }
  .brief-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding-right: 22px;
    text-align: justify;
  }
}
/* E-commerce products css ends */

/* Fixed Social Icons CSS Start */
.fixedSocialBar {
  position: fixed;
  top: 40vb;
  right: 0; /* Changed from default (left) to right */
  height: auto;
}

.fixedSocialBar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fixedSocialBar li {
  margin: 10px 0;
}

.fixedSocialBar a {
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.fixedSocialBar ion-icon {
  font-size: 26px;
  padding: 10px;
}

.fixedSocialBar span {
  position: absolute;
  right: 100px; /* Changed from left to right */
  padding: 8px 15px;
  transition: all 0.5s;
  border-radius: 5px;
  opacity: 0;
  white-space: nowrap;
}

.fixedSocialBar a:hover span {
  opacity: 1;
  right: 65px;
}

.fixedSocialBar span::after {
  content: "";
  position: absolute;
  top: 9px;
  right: -20px; /* Changed from left to right */
  border-left: 10px solid;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
}

/* Background Colors */
.fixedSocialBar .facebook * {
  background: #3b5998;
  border-top-left-radius: 5px;
}
.fixedSocialBar .instagram * {
  background: #ea4c89;
}
.fixedSocialBar .youtube * {
  background: #ef402d;
}
.fixedSocialBar .linkedin * {
  background: #267a28;
  border-top-left-radius: 5px;
}

/* Tooltip Arrow Colors */
.fixedSocialBar .facebook span::after {
  border-left-color: #3b5998;
}
.fixedSocialBar .instagram span::after {
  border-left-color: #ea4c89;
}
.fixedSocialBar .youtube span::after {
  border-left-color: #ef402d;
}
.fixedSocialBar .linkedin span::after {
  border-left-color: #267a28;
}
@media (max-width: 460px) {
  .fixedSocialBar ion-icon {
    font-size: 20px;
    padding: 8px;
  }
  .fixedSocialBar a:hover span {
    opacity: 0 !important;
    right: 0 !important;
  }
}
/* Fixed Social Icons CSS End */

/* Base Footer Styles Start */
.custom-footer {
  background-color: #111;
  color: #ccc;
  font-family: Arial, sans-serif;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 calc(25% - 30px); /* 4 columns */
  min-width: 220px;
}

/* Footer Logo */
.logo-img {
  height: 150px; /* Adjust as needed */
  width: auto;
  padding-bottom: 20px;
}

/* Footer Headings & Text */
.footer-col h4 {
  color: #f5a623;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f5a623;
}

.footer-col ul li::before {
  content: "> ";
  color: #f5a623;
  margin-right: 5px;
}

/* Remove arrows from contact info */
.footer-col ul.no-arrow li::before {
  content: none;
}

/* Contact Icons */
.footer-col ul.no-arrow li i {
  margin-right: 8px;
  color: #f5a623;
}

/* Social Icons */
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff; /* Set background */
  color: #007bff; /* Icon color */
  margin-right: 10px;
  border-radius: 50%; /* Perfect circle */
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.footer-socials a:hover {
  background: #f5a623;
  color: white;
}

/* Divider */
.custom-footer hr {
  border: none;
  height: 1px;
  background-color: #fff;
  margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 14px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
}

.footer-bottom a {
  color: #f5a623;
  text-decoration: none;
}
.footer-bottom .highlighted {
  color: #f5a623;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-col ul.no-arrow li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-col ul.no-arrow li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .footer-col {
    flex: 1 1 calc(50% - 30px); /* 2 columns */
  }
}

@media (max-width: 576px) {
  .footer-col {
    flex: 1 1 100%; /* 1 column */
  }

  .footer-socials a {
    margin-bottom: 10px;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
}

/* Base Footer Styles End */

/* About Us Section CSS Start */

.wrapperMessage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(
    99deg,
    rgb(27, 1, 14) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  margin: 50px 0;
  overflow: hidden;
  padding: 60px 20px;
  box-sizing: border-box;
}

.wrapperMessage h3 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #fff;
  font-size: 29px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.messageMainBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.messageImage img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.message p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  text-align: justify;
  max-width: 600px;
  line-height: 1.6;
}

.messageBox div {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 6px solid rgba(255, 255, 255, 0.8);
}

.messageBox div:nth-child(1) {
  top: 12%;
  left: 42%;
  animation: animate 10s linear infinite;
}
.messageBox div:nth-child(2) {
  top: 70%;
  left: 50%;
  animation: animate 7s linear infinite;
}
.messageBox div:nth-child(3) {
  top: 17%;
  left: 6%;
  animation: animate 9s linear infinite;
}
.messageBox div:nth-child(4) {
  top: 20%;
  left: 60%;
  animation: animate 10s linear infinite;
}
.messageBox div:nth-child(5) {
  top: 75%;
  left: 5%;
  animation: animate 6s linear infinite;
}
.messageBox div:nth-child(6) {
  top: 80%;
  left: 70%;
  animation: animate 12s linear infinite;
}
.messageBox div:nth-child(7) {
  top: 60%;
  left: 80%;
  animation: animate 15s linear infinite;
}
.messageBox div:nth-child(8) {
  top: 32%;
  left: 30%;
  animation: animate 16s linear infinite;
}
.messageBox div:nth-child(9) {
  top: 90%;
  left: 25%;
  animation: animate 9s linear infinite;
}
.messageBox div:nth-child(10) {
  top: 20%;
  left: 80%;
  animation: animate 5s linear infinite;
}

@keyframes animate {
  0% {
    transform: scale(0) translateY(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.3) translateY(-90px) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .messageMainBox {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .messageImage img {
    width: 250px;
    height: 250px;
  }
  .message p {
    font-size: 16px;
    padding: 0 15px;
  }
  .messageBox div {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.8);
  }
  .messageBox div:nth-child(1) {
    top: 8%;
    left: 42%;
  }
  .messageBox div:nth-child(4) {
    top: 45%;
    left: 70%;
  }
  .messageBox div:nth-child(8) {
    top: 37%;
    left: 10%;
  }
}

/* About Us Section CSS End */

/* Terms & Conditions css start */
.terms-section {
  padding: 30px 20px;
  background-color: #fff9f5;
  font-family: "Montserrat", sans-serif;
  color: #333;
}

.terms-section .terms-container {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-section .terms-container h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #b45f06;
}

.terms-section .terms-container h1 i {
  color: #e67e22;
  margin-right: 10px;
}

.terms-section .terms-container h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-top: 25px;
  color: #2c3e50;
}

.terms-section .terms-container h2 i {
  margin-right: 8px;
  color: #27ae60;
}

.terms-section .terms-container p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 10px 0;
}

@media (max-width: 600px) {
  .terms-section .terms-container {
    padding: 20px;
  }

  .terms-section .terms-container h1 {
    font-size: 1.6rem;
  }

  .terms-section .terms-container h2 {
    font-size: 1rem;
  }

  .terms-section .terms-container p {
    font-size: 0.95rem;
  }
}
/* Terms & Conditions css end */

/* Privacy Policy CSS start */

/* Privacy Policy Base Styling */
.halima-privacy {
  padding: 10px 20px;
  background-color: #fefefe;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

.halima-privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.halima-privacy-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.halima-privacy-container h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #444;
}

.halima-privacy-container p {
  margin-bottom: 15px;
}

.halima-privacy-container ul {
  margin-left: 20px;
  padding-left: 15px;
}

.halima-privacy-container ul li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 1.2em;
}

.halima-privacy-container ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #888;
}

/* Link Styling */
.halima-privacy-container a {
  color: #0077cc;
  text-decoration: none;
}

.halima-privacy-container a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .halima-privacy-container {
    padding: 25px 20px;
  }

  .halima-privacy-container h1 {
    font-size: 1.6rem;
  }

  .halima-privacy-container h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .halima-privacy {
    padding: 10px 10px;
  }

  .halima-privacy-container {
    padding: 20px 15px;
  }

  .halima-privacy-container h1 {
    font-size: 1.4rem;
  }

  .halima-privacy-container h2 {
    font-size: 1.1rem;
  }

  .halima-privacy-container p,
  .halima-privacy-container li {
    font-size: 0.95rem;
  }
}

/* Privacy Policy CSS start */

/* FAQS CSS start */

.order-section .order-container {
  max-width: 1000px;
  margin: 40px auto 60px;
  padding: 30px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.order-section h2 {
  font-size: 2em;
  color: #c44d58;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.order-section .order-box {
  background: #fff;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.order-section .order-box h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #444;
  font-weight: 600;
}

.order-section .order-box p {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.5;
}

.order-section ol {
  padding-left: 20px;
}

.order-section ol li {
  margin: 12px 0;
  font-size: 1.05em;
}

/* FAQ SECTION */
.faq-section .faq-container {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 30px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-section h2 {
  font-size: 2em;
  color: #c44d58;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.faq-section .faq-box {
  background: #fff;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.faq-section .faq-box h3 {
  font-size: 1.4em;
  margin-bottom: 12px;
  color: #444;
  font-weight: 600;
}

.faq-section .faq-box p {
  font-size: 1.05em;
  margin: 10px 0;
  line-height: 1.5;
}

.faq-section code {
  background: #eee;
  padding: 3px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 600;
}

@media (max-width: 600px) {
  .order-section h2,
  .faq-section h2 {
    font-size: 1.6em;
  }

  .order-section .order-box h3,
  .faq-section .faq-box h3 {
    font-size: 1.2em;
  }

  .order-section .order-box,
  .faq-section .faq-box {
    padding: 18px 20px;
  }
}

/* FAQS CSS end */
