/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"); */

/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');






body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: white !important;
  font-family: 'Inter', sans-serif;
}

h1 {
  color: white;
}

/* navbar */

/* Apply a box-sizing border-box model to everything */
/* Basic styling for the navbar */
nav {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 500;
  width: 100%;
}


/* logo in the nav bar */
.logo-container img {
  width: 100%;
  /* Make the image take up 100% of its container's width */
  height: auto;
  /* Maintain the aspect ratio */
  max-width: 450px;
  /* Set a maximum width to avoid stretching on larger screens */
  display: block;
  /* Remove extra space below inline images */
  margin: 0 auto;
  /* Center the image within its container */
}

/* Optional: Adjust the margin-left for larger screens if needed */
@media (min-width: 768px) {
  .logo-container img {
    margin-left: 20px;
  }
}


.logo-container span {
  margin-left: 10px;
  font-weight: bold;
}

.menu-container {
  display: flex;
  transition: 0.5s;
}

.menu-container a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 0 15px;
  font-weight: lighter;
  font-size: 20px;
}

.menu-container a:hover {
  color: #0C446A;
  text-decoration: none;
  /* padding: 0 15px; */
  font-weight: bolder;
}


/* Hamburger menu styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: 0.5s;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: rgb(0, 0, 0);
  margin: 5px 0;
}

/* Styles for the cross icon when the menu is open */
.hamburger-menu.change .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
  width: 40px;
  transition: 0.5s;
}

.hamburger-menu.change .bar2 {
  transform: rotate(45deg) translate(-3px, -6px);
  width: 40px;
  transition: 0.5s;
}

.hamburger-menu.change .bar3 {
  margin-right: 9px;
  opacity: 0;
}


/* dropdown */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 0 15px;
  font-weight: lighter;
  font-size: 20px;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: lighter;
  font-size: 20px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


.product-directory {
  display: none;
  /* Initially hide the product directory */
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.product-directory a {
  display: block;
  padding: 15px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 18px;
}



/* Media query for responsiveness */
@media only screen and (max-width: 768px) {
  .menu-container {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 95%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    overflow: scroll;
    margin-top: 0px;
    height: 1000%;
    z-index: 1;
    transition: height 0.3s ease-in-out;
    margin-right: 20px;
  }

  .menu-container a {
    padding: 15px 0;
    width: 100%;
    display: block;
  }

  .hamburger-menu {
    display: flex;
    margin-right: 20px;
  }

  nav span {
    color: white;
    font-size: 150%;
  }

  .menu-container.show-menu a {
    opacity: 1;
  }

  /* showing products */


  .product-directory {
    display: block;
    background-color: transparent;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: none;
  }

  .product-directory a {
    display: block;
    padding: 15px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 15px;
    text-align: start;
    padding-left: 10%;
  }

  /* adding right arrow in a tag at the start of content */
  .product-directory a::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 100;
    padding-left: 10px;
    align-self: center;

    /* centering from its parent in vertically */
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }




}


/* about description */

.parent_overlay {
  background-image: url('/FreeLance/static/background_image.jpg');
  /* Replace 'your-image.jpg' with the path to your background image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Make the background image fixed */
  height: 100%;
  position: relative;
  z-index: -1;
}

.elementor-background-overlay {
  z-index: 10;
  position: relative;
  margin: 10% 0;
  background-color: #0000008f;
}




.content-about {
  padding: 5% 0px;
  margin: 100%;
  border-radius: 10px;
  z-index: 10000;
  position: static;
  background-color: 100%;
  opacity: 1;
}

.content-about h1 {
  color: white;
}

.content-about,
.about-description {
  display: flex;
  margin: 0px 5%;
  color: white;
  font-weight: 600;
}

.content-about .paragraph {
  margin: 40px;
}

.content-about .paragraph h1 {
  text-align: center;
}

/* responsive content about */
@media screen and (max-width: 768px) {
  .content-about {
    display: block;
    transform: rotate(0deg) !important;
    margin: 20px;
  }

  .content-about .about-description {
    display: inline;
  }

  .content-about .paragraph p {
    margin: 2px 10px 0px 10px;
  }

  .content-about .paragraph {
    margin: 0px;
    padding: 0px;
    text-align: justify;
  }

  .content-about img {
    width: 100%;
    height: 100%;
  }
}




/* services content */


.services .elementor-background-overlay {
  padding: 10% 0%;
}

.services h3 {
  text-align: center;
  color: white;
}

.services .main-container {
  color: black;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0% 10%;
  color: white;
}

.service-item {
  width: 48%;
  margin: 1%;
  background: transparent;
  overflow: hidden;
  align-items: center;
  border-radius: 20px;
}

.service-item .image {
  width: 30%;
  float: left;
}

.service-item img {
  width: 100%;
  height: auto;
}

.service-item .content {
  width: 60%;
  float: left;
  padding: 0 2%;
  align-self: last baseline;
}

.service-item h4 {
  margin-top: 0;
  font-weight: 600;
}

.service-item p {
  margin-top: 2%;
  margin-bottom: 0;
  text-align: justify;
}



/* responsive services */
@media screen and (max-width: 768px) {

  .services .main-container {
    padding: 0px !important;
  }

  .services .service-item {
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    align-items: center;
  }

  .services .service-item .content {
    align-self: center;
  }

  .services .service-item h4 {
    text-align: center;
  }

  .services .service-item p {
    text-align: justify;
    margin: 2% -40%;
    font-weight: 700;
    padding: 0px -20px;
  }


  .services .service-item {
    width: 80%;
    margin: 0px;
    padding: 0px;
  }

}


/* end of services */

/* cards */
.container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  /* margin: 20px; */
}

.card {
  width: 20rem;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}

.card h6 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card p {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #1a202c;
  text-align: justify;
}

.card img {
  width: 100%;
  height: 60%;
}

.card-body {
  padding: 20px;
  border-bottom: 10px solid #8AAEE0;
}

.card-body h6 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1a202c;
}

.card:hover {
  transform: scale(1.1) !important;
  animation-duration: 2.5s;
  z-index: 499;
}

/* responsive coursole for .cards */
@media screen and (max-width: 768px) {

  .provide {
    margin-top: 50px !important;
  }

  .container {
    display: flex;
    padding: 0px;
    justify-content: center;
  }

  .container .card {
    width: 80%;
    margin: 0px;
    padding: 10px;
    margin-top: 20px;
    align-self: center;
  }

  .container .card:hover {
    transform: scale(1) !important;
  }

  .container card-body {
    padding: 0px;
  }

  .container.spacer {
    margin-top: 180%;
  }
}




/* foother */

.container {
  max-width: 1170px;
  margin: auto;
}

.col-lg-3 {
  flex: 0 0 auto;
  width: 20%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

ul {
  list-style: none;
}

.footer {
  background-color: #003554;
  padding: 20px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #be2828;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}






/* Trusted by eCommerce Businesses */

/* Apply box-sizing to all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}


/* Global styles */

.container1 {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.section-content {
  text-align: justify;
}

/* Section styles */
.statistics-section {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
}

.section-header {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-title {
  align-items: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
}

.section-description {
  font-size: 1.1rem;
  color: black;
}

/* Statistics grid styles */
.statistics-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.statistic-card {
  flex: 1;
  max-width: 300px;
  background-color: #ebf4ff;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.statistic-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
}

.statistic-value {
  font-size: 2rem;
  font-weight: bold;
  color: #1a202c;
}


/* Back to top button */
/* Style the back-to-top button container */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #8AAEE0;
  color: #003554;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Style the back-to-top button icon */
.cd-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

/* Add hover effect to the button */
.back-to-top:hover {
  background-color: #0056b3;
}

.back-to-top:hover .cd-icon {
  stroke: #fff;
}

/* Responsive adjustments */
@media only screen and (max-width: 600px) {
  .back-to-top {
    width: 30px;
    height: 30px;
  }

  .cd-icon {
    width: 15px;
    height: 15px;
  }
}







/* our customers. */


ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 35%, 30%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.provide img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --ta0-color-primary-hsl: 250, 84%, 54%;
  --ta0-color-bg-hsl: 0, 0%, 100%;
  --ta0-color-contrast-high-hsl: 230, 7%, 23%;
  --ta0-color-contrast-higher-hsl: 230, 13%, 9%;
  --ta0-color-contrast-lower-hsl: 240, 4%, 85%;
  --ta0-color-contrast-low-hsl: 240, 4%, 65%;
  --ta0-color-contrast-medium-hsl: 225, 4%, 47%;

  /* spacing */
  --ta0-space-4xs: 0.125rem;
  --ta0-space-3xs: 0.25rem;
  --ta0-space-2xs: 0.375rem;
  --ta0-space-sm: 0.75rem;
  --ta0-space-md: 1.25rem;
  --ta0-space-lg: 2rem;

  /* typography */
  --ta0-text-sm: 0.833rem;
}

@media(min-width: 64rem) {
  :root {
    /* spacing */
    --ta0-space-4xs: 0.1875rem;
    --ta0-space-3xs: 0.375rem;
    --ta0-space-2xs: 0.5625rem;
    --ta0-space-sm: 1.125rem;
    --ta0-space-md: 2rem;
    --ta0-space-lg: 3.125rem;

    /* typography */
    --ta0-text-sm: 1rem;
  }
}

/* icons */
.ta0-icon {
  height: var(--ta0-size, 1em);
  width: var(--ta0-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.ta0-icon--xl {
  --ta0-size: 64px;
}

/* component */


/* utility classes */
.ta0-margin-top-4xs {
  margin-top: var(--ta0-space-4xs);
}

.ta0-color-contrast-medium {
  --ta0-color-o: 1;
  color: hsla(var(--ta0-color-contrast-medium-hsl), var(--ta0-color-o, 1));
}

.ta0-block {
  display: block;
}

.ta0-text-sm {
  font-size: var(--ta0-text-sm);
}

.ta0-border {
  --ta0-border-o: 1;
  border: var(--ta0-border-width, 1px) var(--ta0-border-style, solid) hsla(var(--ta0-color-contrast-lower-hsl), var(--ta0-border-o, 1));
}

.ta0-radius-50\% {
  border-radius: 50%;
}

.ta0-height-lg {
  height: 3rem;
}

.ta0-width-lg {
  width: 3rem;
}

.ta0-margin-bottom-3xs {
  margin-bottom: var(--ta0-space-3xs);
}

.ta0-flex-shrink-0 {
  flex-shrink: 0;
}

.ta0-items-center {
  align-items: center;
}

.ta0-flex-column {
  flex-direction: column;
}

.ta0-flex {
  display: flex;
}

.ta0-margin-bottom-md {
  margin-bottom: var(--ta0-space-md);
}

.ta0-line-height-md {
  line-height: 1.4;
  font-weight: bold;
}

.ta0-sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.ta0-margin-bottom-sm {
  margin-bottom: var(--ta0-space-sm);
}

.ta0-text-center {
  text-align: center;
  padding-bottom: 20px;
}

.ta0-padding-md {
  padding: var(--ta0-space-md);
}

.ta0-radius-md {
  border-radius: 0.25em;
}

.ta0-bg-contrast-lower {
  --ta0-bg-o: 1;
  background-color: hsla(var(--ta0-color-contrast-lower-hsl), var(--ta0-bg-o, 1));
  background-color: #bcd0ed;
}

mark {
  color: var(--bs-highlight-color);
  background-color: #bcb9ff;
}



.ta0-gap-sm {
  gap: var(--ta0-space-sm);
}

.ta0-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.ta0-grid>* {
  min-width: 0;
  grid-column-end: span 12;
}

.ta0-margin-bottom-lg {
  margin-bottom: var(--ta0-space-lg);
}

.ta0-max-width-adaptive-lg {
  max-width: 32rem;
}

blockquote {
  text-align: justify;
}

@media(min-width: 48rem) {
  .ta0-max-width-adaptive-lg {
    max-width: 48rem;
  }
}

@media(min-width: 64rem) {
  .ta0-max-width-adaptive-lg {
    max-width: 64rem;
  }
}

@media(min-width: 80rem) {
  .ta0-max-width-adaptive-lg {
    max-width: 80rem;
  }
}

.ta0-container {
  width: calc(100% - 2*var(--ta0-space-md));
  margin-left: auto;
  margin-right: auto;
}

.ta0-margin-right-2xs {
  margin-right: var(--ta0-space-2xs);
}

.ta0-flex-wrap {
  flex-wrap: wrap;
}

.ta0-margin-bottom-2xs {
  margin-bottom: var(--ta0-space-2xs);
}

.ta0-color-contrast-low {
  --ta0-color-o: 1;
}

.ta0-margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.ta0-border-2 {
  --ta0-border-width: 2px;
}

.ta0-border-bg {
  --ta0-border-o: 1;
  border-color: hsla(var(--ta0-color-bg-hsl), var(--ta0-border-o, 1));
}

.ta0-bg-opacity-30\% {
  --ta0-bg-o: 0.3;
}

.ta0-bg-opacity-50\% {
  --ta0-bg-o: 0.5;
}

@media(min-width: 64rem) {
  .ta0-margin-top-auto\@md {
    margin-top: auto;
  }

  .ta0-flex-column\@md {
    flex-direction: column;
  }

  .ta0-flex\@md {
    display: flex;
  }

  .ta0-col-4\@md {
    grid-column-end: span 4;
  }
}

/* responsive .ta0-container */
@media screen and (max-width: 768px) {
  .ta0-container h3 {
    font-size: 2.5rem;
  }
}


/* footer new */

.footer {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 16px;
  background-color: white;
}

/* Container styles */
.footer-container {
  color: black;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  padding-top: 32px;
}

/* Logo and brand styles */
.brand-container {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.brand-logo {
  height: 64px;
  border-radius: 10%;
}

.brand-name {
  font-size: 17px;
  font-weight: 600;
  margin-left: 12px;
}

/* Navigation links styles */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}

.nav-link {
  margin-right: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7b7b7b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

/* Horizontal line separator styles */
.separator {
  margin: 24px 0;
  border: 1px solid #e0e0e0;
}

/* Copyright text styles */
.copyright-text {
  display: block;
  font-size: 0.875rem;
  color: #7b7b7b;
  text-align: center;
  margin-bottom: 16px;
}

.copyright-link {
  color: #1a1a1a;
  text-decoration: underline;
}

.copyright-link:hover {
  color: #1a1a1a;
}








/* scroll hint */
.mouse {
  display: block;
  margin: 23% auto;
  width: 23px;
  height: 40px;
  border-radius: 13px;
  border: 2px solid white;
  position: absolute;
  top: 50%;
  position: absolute;
  left: 50%;
  margin-left: -14px;
  color: white;
  z-index: 100;
  opacity: 0.75;
}

/* responsive .mouse */
@media screen and (max-width: 768px) {
  .mouse {
    display: none;
  }
}

.mouse span {
  display: block;
  margin: 6px auto;
  width: 3px;
  height: 7px;
  border-radius: 100%;
  background: white;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
  color: white;
}

@-webkit-keyframes scroll {

  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    transform: translateY(12px);
  }
}

/* scroll hint end */






/* Panels. */
.splitview {
  position: relative;
  width: 100%;
  min-height: 45vw;
  overflow: hidden;
  font-family: 'Alegreya SC', sans-serif;
  margin-top: -15% !important;
}

.panel {
  position: absolute;
  width: 100vw;
  min-height: 45vw;
  overflow: hidden;
}

.panel .content {
  position: absolute;
  width: 100vw;
  min-height: 45vw;
  color: #FFF;
}

.panel .description {
  width: 25%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.panel img {
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.15);
  width: 35%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.bottom {
  background-color: black;
  z-index: 1;
}

.bottom .description {
  right: 5%;
}

.top {
  background-color: #4d45ad;
  z-index: 2;
  width: 50vw;

  /*-webkit-clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);*/
}

.top .description {
  left: 5%;
}

/* Handle. */
.handle {
  height: 100%;
  position: absolute;
  display: block;
  background-color: rgb(253, 171, 0);
  width: 5px;
  top: 0;
  left: 50%;
  z-index: 3;
}

/* Skewed. */
.skewed .handle {
  top: 50%;
  transform: rotate(30deg) translateY(-50%);
  height: 200%;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  transform-origin: top;
}

.skewed .top {
  transform: skew(-30deg);
  margin-left: -1000px;
  width: calc(50vw + 1000px);
}

.skewed .top .content {
  transform: skew(30deg);
  margin-left: 1000px;
}

/* Responsive. */
@media (max-width: 900px) {
  .splitview {
    margin-top: 15% !important;
  }

  .panel .description {
    font-size: 0.5rem;
  }

  .panel img {
    width: 30%;
  }

  .panel h1 {
    font-size: 1rem;
  }
}



.container_Choose_us {
  margin: auto;
  color: aqua;
  height: max-content;
  width: 85%;
  background-color: hsl(217, 54%, 11%);
  border: 2px solid black;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.box {
  color: rgb(255, 255, 255);
  width: 280px;
  height: 220px;
  margin: 30px;
  background-color: hsl(215, 32%, 27%);
  border-radius: 20px;
}

.box h3 {
  margin-top: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  font-weight: bold;
  font-size: 20px
}

.box img {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 120px;
  border-radius: 50%;
}

.box img:hover {
  box-shadow: 0 0px 50px rgb(5, 28, 60);
}

.box:hover {
  margin-top: 10px;
  box-shadow: 0 8px 20px rgb(82, 157, 248);
}




/* Membership & Certification */
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.Certificationslider {
  background: white;
  box-shadow: 0 20px 80px -5px rgb(0 0 0 / 43%);
  height: 300px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 90%;
}

.Certificationslider::before,
.Certificationslider::after {
  background: linear-gradient(to right, rgb(119, 119, 119) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 300px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.Certificationslider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.Certificationslider::before {
  left: 0;
  top: 0;
}

.Certificationslider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.Certificationslider .slide {
  height: 100px;
  width: 250px;
}

.Certificationslider .slide img {
  margin: 10px 10px;
  margin-left: 20px;
  margin-right: 20px;
  width: 250px;
  height: 250px;
}















.slider {
  height: 80%;
  position: relative;
  margin-top: -15%;
}

.slides {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 90%;
  overflow: hidden;
  background-color: black;
}

.slides img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  opacity: 0.7;
  filter: contrast(50%);
  filter: brightness(70%);
}

.prev_button,
.next_button {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: none;
  /* No background */
  border: none;
  /* No border */
  font-size: 48px;
  /* Bigger modern arrow */
  color: rgba(255, 255, 255, 0.7);
  /* Soft white */
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  user-select: none;
  touch-action: manipulation;
  z-index: 10;
}

.prev_button {
  left: 20px;
}

.next_button {
  right: 20px;
}

.prev_button:hover,
.next_button:hover {
  color: #ffffff;
  /* Full bright white on hover */
  transform: translateY(-50%) scale(1.2);
  /* Slight scale on hover */
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.pagination span {
  padding: 5px;
  margin: 5px;
  cursor: pointer;
  background-color: #ddd;
  border-radius: 50%;
}

.pagination span.active {
  background-color: #333;
}

/* responsive slider */
@media (max-width: 768px) {

  .slider {
    height: 300px;
    margin-top: -10%;
    margin-bottom: -10%;
  }

  .slides img {
    height: 300px;
  }

  .prev_button,
  .next_button {
    font-size: 10px;
    padding: 10px;
  }

  .pagination span {
    padding: 2px;
    margin: 2px;
  }
}


/* adding text in image */
.slider_texts {
  font-size: 21px;
  font-weight: bolder;
  color: white;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* showing only active div in .slider_texts */
.slider_texts div {
  display: none;
}

.slider_texts div.active {
  display: block;
}

.slider_texts div {
  font-size: 200%;
  text-align: center;
  font-weight: 700;
  mix-blend-mode: multiply;
  transform-origin: 50% 50%;
}

@media (max-width: 768px) {

  .slider_texts div {
    font-size: 100%;
  }
}





.dropdown {
  margin-right: 10px;
}

.product-directory {
  display: none;
  background-color: white !important;
  width: 200%;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}


/* footer */
.footer-clean {
  padding: 50px 0;
  background-color: #0d192b;
  color: #ebf4ff;
}

.footer-clean h3 {
  color: #ebf4ff;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 20px;
}

.footer-clean ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-clean ul a {
  color: #ebf4ff;
  text-decoration: none;
  opacity: 0.8;
}

.footer-clean ul a:hover {
  opacity: 1;
}

.footer-clean .item.social {
  text-align: right;
}

@media (max-width:767px) {
  .footer-clean .item {
    text-align: center;
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-clean .item.social {
    text-align: center;
  }
}

.footer-clean .item.social>a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-left: 10px;
  margin-top: 22px;
  color: inherit;
  opacity: 0.75;
}

.footer-clean .item.social>a:hover {
  opacity: 0.9;
}

@media (max-width:991px) {
  .footer-clean .item.social>a {
    margin-top: 40px;
  }
}

@media (max-width:767px) {
  .footer-clean .item.social>a {
    margin-top: 10px;
  }
}

.footer-clean .copyright {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 13px;
  opacity: 0.6;
}




/* WhatsApp Button Basic Style */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #25D366;
}

.whatsapp-button:hover img {
  transform: rotate(10deg);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 20px;
  }

  .whatsapp-button img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-button {
    width: 45px;
    height: 45px;
    bottom: 35px;
    right: 16px;
  }

  .whatsapp-button img {
    width: 25px;
    height: 25px;
  }
}

/* Gallery Section */
.consignment-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.consignment-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
}

.consignment-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  align-items: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.consignment-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consignment-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



.video-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.video-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  max-width: 30%;
}

.video-wrapper {
  width: 100%;
  max-width: 300px;  
  aspect-ratio: 9 / 16; 
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background-color: #000;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 480px) {
  .video-section h2 {
    font-size: 22px;
  }
    .video-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: auto;
      max-width: 80%;
    }
}