:root {
  --font-global: 'Luxe';
  --font-alt: 'Luxe', sans-serif;
  --font-serif: 'Quicksilver';
  --color-main-theme: #0b243a;
  --color-theme-sec: #dab870;
  --color-dark-1: #010101;
  --color-dark-2: #171717;
  --color-dark-3: #272727;
  --color-dark-3a: #333;
  --color-dark-4: #555;
  --color-gray-1: #757575;
  --color-gray-2: #888;
  --color-gray-3: #999;
  --color-gray-light-1: #f1f1f1;
  --color-gray-light-2: #f7f7f7;
  --color-gray-light-3: #e5e5e5;
  --color-gray-light-4: #d5d5d5;
  --color-gray-light-5: #ccc;
  --color-gray-light-6: #bbb;
  --color-secondary-1: #fbe3a1;
  --gradient-primary-1: linear-gradient(90deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
  --gradient-primary-1-a: linear-gradient(90deg, var(--color-primary-4) 25%, var(--color-primary-3) 40%, var(--color-primary-2) 60%, var(--color-primary-1) 75%);
  --gradient-primary-1-b: linear-gradient(45deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
  --gradient-primary-1-c: linear-gradient(0deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
  --gradient-gray-light-1: linear-gradient(0deg, #f5f5f5 0%, #fff 100%);
  --gradient-gray-light-2: linear-gradient(0deg, #fff 0%, #f5f5f5 100%);
  --gradient-dark-alpha-1: linear-gradient(90deg, var(--color-dark-1) 40%, transparent 87%);
  --gradient-dark-alpha-2: linear-gradient(90deg, transparent 13%, var(--color-dark-1) 60%);
  --gradient-primary-alpha-1: linear-gradient(90deg, var(--color-primary-1) 40%, transparent 87%);
  --gradient-primary-alpha-2: linear-gradient(90deg, transparent 13%, var(--color-primary-1) 60%);
  --border-radius-default: 4px;
  --border-radius-large: 30px;
  --box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 1px 0px rgba(0, 0, 0, 0.03), 0px 3px 5px 0px rgba(0, 0, 0, 0.03);
  --box-shadow-strong: 0px 5px 10px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.06), 0px 3px 5px 0px rgba(0, 0, 0, 0.06);
  --box-shadow-block: 0px 3px 50px 0px rgba(0, 0, 0, 0.05);
  --box-shadow-block-strong: 0px 3px 50px 0px rgba(0, 0, 0, 0.15);


}

/* @font-face {
    font-family: 'Luxe';
    src: url('Luxe/LuxeUno-Regular.ttf') format('truetype'),

} */
@font-face {
  font-family: 'Duplet';
  src: url('Duplet-Regular.otf') format('truetype'),

}

@font-face {
  font-family: 'Quicksilver';
  src: url('Quicksilver/Quicksilver-400.otf') format('truetype'),

}

body {
  font-family: 'Duplet';
  padding: 0;
  margin: 0;

}

h1 {
  font-family: 'Quicksilver';
  color: var(--color-theme-sec);
  font-size: 80px;
  text-align: center;
}

h2 {
  font-family: 'Quicksilver';
  font-size: 55px;
  color: var(--color-main-theme);
}

h3 {
  font-size: 25px;
}

a {
  text-decoration: none;
}

p {
  font-size: 18px;
  font-weight: 300;
  color: #616161;
  letter-spacing: 1px;
}

.bg-video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  /* Important for positioning the ::before overlay */
  z-index: 1;
}

/* --- ADDED OVERLAY STYLES --- */
.bg-video-wrapper::before {
  content: "";
  /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Choose your overlay color and transparency (e.g., dark, 50% opacity) */
  background-color: rgb(11 36 58 / 80%);

  /* Ensure the overlay sits above the video but below any other content */
  z-index: 2;
}

/* -------------------------- */

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The video needs to be below the overlay */
  z-index: 1;
}

.navbar {
  z-index: 99;
}

.contact_btn {
  background-color: var(--color-main-theme);
  color: var(--color-theme-sec);
  padding: 10px 15px;
  font-size: 18px;
  text-decoration: none;
  line-height: normal;
  border-radius: 10px;
}

.nav-link {
  font-size: 18px;
}

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  gap: 20px;
}

.home-content {
  z-index: 999;
  display: flex;
  justify-content: center;
  margin: auto;
  align-items: center;
  position: relative;
  height: 90vh;
  text-align: center;
  flex-direction: column;
  color: #fff;
  max-width: 1000px;
}

.home-content h1 {
  padding-bottom: 20px;
}

.about-section {
  padding: 100px 0;
  margin-top: 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about-s-img img {
  width: 80%;

}

.image-with-lines-container {
  position: relative;
  /* Needed for absolute positioning of pseudo-elements */
  display: inline-block;
  /* Allows the container to wrap content and respond to text-align */
  /* Optional: Add some padding if you want space between the image and the lines */
  padding: 0 20px;
  /* Example padding */
}

.image-with-lines-container::before,
.image-with-lines-container::after {
  content: "";
  /* Required for pseudo-elements */
  position: absolute;
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  /* Adjust for perfect vertical centering */
  height: 2px;
  /* Thickness of the line */
  width: 50px;
  /* Length of the line - adjust as needed */
  background-color: #0d1e37;
  /* The color of your lines (example: from Simonza branding) */
  /* background-color: #E6E6E6; (If you prefer a lighter grey) */
}

.image-with-lines-container::before {
  left: 0;
  /* Position the left line */
}

.image-with-lines-container::after {
  right: 0;
  /* Position the right line */
}

/* Optional: Basic image styling */
.image-with-lines-container img {
  display: block;
  /* Remove extra space below image */
  max-width: 100%;
  /* Ensure image is responsive */
  height: auto;
}

/* Container for all icon blocks if they are in a row themselves */
.icons-section {
  display: flex;
  justify-content: center;
  /* Center the entire row of icon blocks */
  gap: 80px;
  /* Gap between different icon blocks */
  margin: 40px 0;
  /* Some margin for the section */
}

/* Individual Icon Block Styling */
.icon-block {
  display: flex;
  /* Use flexbox for line-icon-line arrangement */
  align-items: center;
  /* Vertically align items in the middle */
  gap: 15px;
  /* This sets the 50px gap between the line and the icon */
  padding-bottom: 35px;
  /* Optional: If icon blocks should stack on small screens */
  flex-direction: row;
  /* Default: lines and icon in a row */
  /* On smaller screens, you might want to switch to column: */
  /* @media (max-width: 768px) { flex-direction: column; } */
}

/* Line Styling */
.icon-line {
  width: 150px;
  /* Length of the line - adjust as needed */
  height: 2px;
  /* Thickness of the line */
  background-color: var(--color-theme-sec);
  /* Same color as before */
  /* Ensure lines don't shrink on small screens if they have content */
  flex-shrink: 0;
}

/* Icon Image Styling */
.icon-block .actual-icon {
  display: block;
  /* Remove extra space below image */
  max-width: 80px;
  /* Example size for your icons */
  height: auto;
  /* You can adjust max-width/height to control icon size */
  /* flex-shrink: 0; */
  /* Prevent icon from shrinking if space is tight */
}

/* If you want the icon to be larger, adjust max-width for .actual-icon */

/* From Uiverse.io by alexmaracinaru */
.cta {
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  padding-top: 15px;
}

.cta span {
  padding-bottom: 7px;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
  padding-right: 15px;
  /* text-transform: uppercase; */
}

.cta svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  color: black;
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.phylosopy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: baseline;
  padding-top: 80px;
  text-align: center;
}

.phylo-sec h3 {
  font-weight: 600;
  padding: 20px 0 0px;
}

.phylo-sec img {
  padding: 20px 20px;
  border-radius: 50%;

}

.collection-heading {
  text-align: center;
}

.collection-heading .icon-block {

  justify-content: center;
}

.collection {
  padding: 100px 0;
  background-color: #e6e6e6;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 25px;

}

.collec-det img {
  width: 100%;
  /* border-radius: 20px; */
  margin-bottom: 15px;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.collec-det {
  background: #ffffff;
  padding: 10px;
  /* border-radius: 20px; */
}

.produuct-sec {
  padding: 100px 0;
}

/* swiper slider */

.module {
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-auto-rows: min-content;
  grid-template-areas:
    "header scrollNavigation"
    "content content";
  gap: 1rem;
  max-width: 100%;
  background: #fff;
  /* box-shadow:0px 8px 15px 0 rgba(0,0,0,.1) */
}

.module-title {
  display: flex;
  flex-direction: column;
  grid-area: header;
  gap: 0.5rem;
  justify-content: center;
}

.module-title span {
  color: #444;
  font-weight: 500;
}

.module-pagination {
  grid-area: scrollNavigation;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
}

.module-pagination .swiper-button-next,
.module-pagination .swiper-button-prev {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #0b243a;
  color: #ffffff;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.2rem;
  border: 1px solid transparent;
  border-radius: 2rem;
  padding: 0rem;
  width: 45px;
  height: 45px;
  touch-action: manipulation;
  margin-top: 0;
  transition: color 0.2s ease-out, border-color 0.2s ease-out,
    border-radius 0.2s ease-out, background-color 0.2s ease-out,
    box-shadow 0.2s ease-out, transform 0.2s ease-out,
    text-decoration 0.2s ease-out;
}

.module-pagination .swiper-button-next:hover,
.module-pagination .swiper-button-prev:hover {
  color: #fff;
  background-color: var(--color-theme-sec);
}

.module-pagination .swiper-button-next:after,
.module-pagination .swiper-button-prev:after {
  font-size: 17px;
}

.module-swiper {
  grid-area: content;
  position: relative;
}

.swiper {
  width: 100%;
  min-width: 0;
}

.swiper-scrollbar {
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  margin-top: 0.45rem;
  height: 8px !important;
}

.swiper-slide {
  /* background: #ccc; */
  /* border-radius: 1rem; */
  overflow: hidden;
  height: auto;
}

.swiper-slide .img {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
}

.mySwipers .swiper-slide .img {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px;
}

.swiper-slide .img a {
  width: 100%;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid #00000030;
  padding: 10px;
  /* border-radius: 20px; */
}

.mySwipers .swiper-slide .img a {
  width: 100%;
  background-color: transparent;
  text-decoration: none;
  border: none;
  border-radius: 0px;
  padding: 0px;
}

.uls a {

  text-decoration: none;
  color: #fff;
  flex-direction: column;
  font-size: 18px;
}

.uls {
  display: flex;
  gap: 5px;
  justify-content: center;
  flex-direction: column;
  padding-left: 0px;
}

.swiper-slide>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.swiper-slide .collections {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: unset;
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: all 0.6s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mySwipers .swiper-slide:hover .collections {
  scale: 1.1;
}

/* .swiper-slide:hover .collections {
  scale: 1.1;
} */
.swiper-slide .collections img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* min-height: 100px;
  max-height: 100px; */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.swiper-slide .content a {
  color: #000;
  text-decoration: none;
}

.swiper-slide .content a:hover {
  text-decoration: none;
}

.swiper-slide .content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #000;
  background-color: #fff;
}

.swiper-slide .content .heading {
  position: relative;
}

.swiper-slide .content .heading h3 {
  margin: 0;
}

.swiper-slide .content .heading h3 span {
  display: block;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
}

.swiper-slide .content .articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.swiper-slide .content .articles .article {
  background: rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background 250ms ease;
  font-weight: 500;
}

.swiper-slide .content .articles .article:hover {
  background: rgba(0, 0, 0, 0.2);
}

.swiper-slide .content .articles .article p {
  margin: 0;
  padding: 0;
}

.swiper-slide .content .see-more {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.swiper-slide .content .see-more p {
  margin: 0;
  padding: 0;
}

.collections img {
  /* border-radius: 20px; */
}

/* [data-theme="lilac"] {
  background: #c8beeb;
}

[data-theme="sand"] {
  background: #d9cdbd;
}

[data-theme="green"] {
  background: #c2e4bf;
}

[data-theme="light-blue"] {
  background: #bdd2f1;
} */

.export-d {
  text-align: center;
}

.export-d .icon-block {
  justify-content: center;
}

.export-d .icon-line {
  width: 50px;
  height: 2px;
  background-color: var(--color-theme-sec);
  flex-shrink: 0;
}

.export {
  background-color: var(--color-main-theme);
  padding: 100px 0 0;
  color: #fff;
}

.export-d p {
  max-width: 1000px;
  margin: auto;
  padding-bottom: 20px;
  color: #fff;
}

.export-sec {
  padding-top: 100px;
}

.export-d .hover-underline-animation {
  color: var(--color-theme-sec);
}

.export-d .hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-theme-sec);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.export-d #arrow-horizontal {
  color: var(--color-theme-sec);

}

.export-d h2 {

  color: #fff;

}

.phone p {
  margin-bottom: 0;
}

.address p {
  margin-bottom: 0;

}

.home-content p {
  color: #fff;
}

.catalogue-sec {
  padding: 100px 0;
}

.catalogues {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.cataloguess-data p {
  padding-bottom: 25px;
}

.cataloguess-img img {
  width: 100%;
}

.footer {
  background-color: var(--color-main-theme);
  padding: 250px 0 20px
}

.footer-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.footer-data p {
  color: #fff;
  margin-bottom: 0;
}

.footer-data a {
  color: var(--color-main-theme);
  border: 1px solid transparent;
  background-color: #fff;
  border-radius: 30px;
  width: fit-content;
}

.contact-forms {
  padding: 20px;
  display: grid;
  grid-template-columns: 40% 60%;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-forms-deta {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.con-h {
  text-align: center;

}

.map {
  position: relative;
  /* right: 130px; */
  z-index: -1;
}

.conta {
  display: grid;
  grid-template-columns: repeat();
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  position: relative;
  top: 60px;
  gap: 20px;

}

.conta .contact-detail {
  border-radius: 0px;
}

.top-sec {
  padding-top: 150px;
}

.con-h .icon-block {
  justify-content: center;
}

.conta h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 600;

}

.conta .contact-detail {
  gap: 25px;
}

.forms-s {
  text-align: center;
  max-width: 600px;
  margin: auto;
  padding: 25px 0;
}

.forms-s h3 {
  font-size: 36px;
  font-weight: 600;
}

.con-h .icon-line {
  width: 80px;
  height: 2px;
  background-color: var(--color-theme-sec);
  flex-shrink: 0;
}

.contact-detail {
  background-color: var(--color-main-theme);
  padding: 40px;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.email h5 {
  color: var(--color-theme-sec)
}

.phone h5 {
  color: var(--color-theme-sec)
}

.address h5 {
  color: var(--color-theme-sec)
}

.email p {
  color: #fff;
  margin-bottom: 0;
}

.contact-detail a {
  color: #fff;
  text-decoration: none;
}

.contactttt {
  position: relative;
  top: 150px;
}

/* --- Global Setup for Icons --- */
/* You need to include Font Awesome in your HTML <head> for the icons to work:
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
*/

/* --- Form Wrapper and Base Styles --- */
.contact-form {

  margin: 0px 0px 0 30px;
  border-radius: 10px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  /* Ensures the shadow is contained within the border-radius */
}

/* --- Input Field Styling (The "Inset Look") --- */
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px 50px 15px 20px;
  /* Padding for text, and space for the icon */
  font-size: 16px;
  border: none;
  outline: none;
  color: #333;
  /* Dark text */
  background-color: #f2f2f2;
  /* Light gray background */
  border-radius: 6px;

  transition: box-shadow 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  /* Slightly more defined inset on focus */
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* --- Textarea Specific Styling --- */
.input-group.textarea-group {
  margin-bottom: 30px;
  /* More space below the message box */
}

.input-group textarea {
  /* Reset padding for textarea since it has no icon */
  padding: 15px 20px;
  resize: none;
  /* Prevents user from resizing the textarea */
}

/* --- Icon Positioning --- */
.input-group .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  /* Light gray icon color */
  font-size: 18px;
  pointer-events: none;
  /* Allows clicks to pass through to the input */
}

/* --- Submit Button Styling --- */
.submit-button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  /* White text */

  /* Dark blue/black background from the Simonza header */
  background-color: #0d1e37;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
}

.submit-button:hover {
  background-color: var(--color-theme-sec);
  /* Slightly lighter dark color on hover */
  transform: translateY(-1px);
  /* Subtle lift effect */
  /* box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25); */
}

/* --- Placeholder text color (to match the light gray look) --- */
::placeholder {
  color: #b0b0b0;
  opacity: 1;
  /* Firefox default is lower opacity */
}

.our-gall {
  padding: 100px 0 0;
  background-color: #e6e6e6;
  height: 50vh;
}

.gall-head {
  text-align: end;
}

.gall-head .icon-block {
  justify-content: end;
}

.gallary .module {
  display: flex;
  justify-content: space-between;
  background: transparent;
}

.cform {
  padding-top: 100px;
}

.cform-cont {
  padding-top: 0px;
}

.tag img {
  z-index: 9999;
  position: absolute;
  bottom: 20px;
  width: 250px;
  right: 20px;
}

.footer-tag img {
  width: 150px;
  margin: auto;
  display: block;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: self-start;
  padding: 50px 0;

}

.footer-grid h3 {
  color: #fff;
  padding-bottom: 10px;
}

.footer-cop-social {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.copy-tagline p {
  margin-bottom: 0;
  color: #fff;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  background-color: transparent;
  text-decoration: none;

}

.footer-social {
  flex-direction: column;
  text-decoration: none;
  display: flex;
  gap: 10px;
}

.footer-menu {
  padding-left: 75px;
}

.copy-tagline a {
  text-decoration: none;
  color: #fff;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  box-shadow: 0 0 10px #00000036;
  z-index: 9999;
  background: #fff;
}

header.fixed {
  position: fixed;
  top: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
}

.logo a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

.nav-wrap ul {
  padding: 0;
}

.nav-wrap ul.top_nav {
  display: block;
  margin: 0;
}

.nav-wrap ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}

.nav-wrap ul li a {
  color: var(--color-main-theme);
  text-decoration: none;
  font-size: 18px;
  padding: 10px 5px;
  position: relative;
  display: inline-block;
}

.nav-wrap ul.sub-nav {
  display: none;
}

@media screen and (min-width: 919px) {
  .nav-wrap ul.sub-nav {
    display: none;
    width: 220px;
    color: #fff;
    right: 0;
    padding: 0px 0px;
    margin: 0px;
    position: absolute;
    left: 0px;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
    background-color: #fff;
  }

  .nav-wrap ul.sub-nav.mega-menu {
    display: none;
    width: 750px;
    color: #fff;
    right: 0;
    padding: 20px;
    margin: 0px;
    position: absolute;
    left: -30px;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
    background-color: #fff;
  }

  .nav-wrap ul.sub-nav ul.sub-nav {
    left: 100%;
    top: 0;
    z-index: 1;
  }

  .nav-wrap li:hover>ul.sub-nav,
  .nav-wrap ul.sub-nav li {
    display: block;
  }

  .nav-wrap ul.sub-nav li a {
    padding: 12px;
    color: var(--color-main-theme);
    display: block;
    margin: 0;
    background: #fff;
  }

  .nav-wrap ul.sub-nav ul.sub-nav li a {
    padding-right: 25px;
  }

  .nav-wrap ul.sub-nav li:hover>a {
    opacity: 0.8
  }

  .nav-wrap li:hover>ul {
    display: block;
    -moz-animation: fadeInUp .3s ease-in;
    -webkit-animation: fadeInUp .3s ease-in;
    animation: fadeInUp .3s ease-in;
  }

  .nav-wrap>ul>li:not(:last-child) {
    margin-right: 15px;
  }

  .nav-wrap ul ul li:hover>ul {
    display: block;
    -moz-animation: fadeInRight .3s ease-in;
    -webkit-animation: fadeInRight .3s ease-in;
    animation: fadeInRight .3s ease-in;
  }

  .nav-wrap ul li.has-submenu:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 16px;
    color: var(--color-main-theme);
    padding-right: 5px;
  }

  .nav-wrap ul ul li.has-submenu:after {
    color: #333;
    transform: rotate(-90deg);
    position: absolute;
    right: 8px;
    top: 50%;
    padding: 0;
    margin-top: -7px;
  }

  .nav-wrap ul li.submenu-active>ul.sub-nav {
    display: none !important;
  }

  .nav-wrap ul li.submenu-active:hover>ul.sub-nav {
    display: block !important;
  }

  /*Hover Effect*/
  .nav-wrap>ul>li:before {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }

  .nav-wrap>ul>li.active:before,
  .nav-wrap>ul>li:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  /*Hover Effect*/
}


/*Res Button*/
.nav-button {
  height: 27px;
  width: 36px;
  margin-left: 30px;
  display: none
}

.nav-button a {
  height: 27px;
  width: 36px;
  display: inline-block;
  cursor: pointer;
}

.nav-button span,
.nav-button span:before,
.nav-button span:after {
  cursor: pointer;
  border-radius: 50px;
  height: 5px;
  width: 35px;
  background: var(--color-main-theme);
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}

.nav-button span {
  margin: 10px 0 0 0;
}

.nav-button span:before {
  top: -10px;
}

.nav-button span:after {
  top: 10px;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}


/*leftnav*/
.leftnav {
  width: 300px;
  margin: 0;
  display: inline-block;
  top: 120px;
  position: absolute;
  left: 10px;
}

ul.leftnav-listing {
  display: inline-block;
  padding: 20px 0;
  width: 58px;
  border: 3px solid #fff;
  border-radius: 40px;
}

ul.leftnav-listing.leftnav-fixed {
  position: fixed;
  top: 120px;
  max-width: 300px;
}

ul.leftnav-listing li {
  display: block;
  border-radius: 50%;
  /* overflow:hidden; */
  text-align: center;
  max-width: 25px;
  margin: 0 auto 20px auto;
  font-size: 0;
  position: relative;
}

ul.leftnav-listing li:last-child {
  margin-bottom: 0;
}

ul.leftnav-listing li a {
  padding: 7px;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}

ul.leftnav-listing li.is_visiable_section a {
  background: #fff
}

ul.leftnav-listing li:not(:last-child):after {
  content: '';
  height: 100%;
  position: absolute;
  background: #fff;
  left: 50%;
  z-index: 0;
  bottom: -100%;
  width: 2px;
  margin-left: -1px;
}

/*Demo Extra css*/
footer {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vh {
  height: 100vh;
  background: #010a43;
  display: flex;
  align-items: center;
  font-size: 5vw;
  color: #ffff;
  justify-content: center;
  text-transform: uppercase;
}

.vh.aqua {
  background: #9f50dc;
}

.vh.pink {
  background: #A80874;
}

.vh.yellow {
  background: #ffc400
}

.vh span {
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.02em;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 0.02em;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  transition: background-size .5s cubic-bezier(0.67, 0.01, 0.15, 0.98);
  background-image: linear-gradient(135deg, #fff 0%, #fff 50%, transparent 50.1%);
  background-size: 0% 100%;
}

.vh span:hover {
  background-size: 220% 100%;
}

/*Res Button*/
@media screen and (max-width: 919px) {
  .nav-button {
    display: block;
  }

  .show_menu #nav-toggle span:after {
    transform: translate3d(0, -10px, 0) rotate(-91deg);
  }

  .show_menu #nav-toggle span {
    transform: translate3d(0, 0px, 0) rotate(45deg);
  }

  .show_menu #nav-toggle span:before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }
}

@media screen and (max-width: 919px) {
  .nav-wrap ul.top_nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #051124;
    height: calc(100vh - 85px);
    overflow-y: scroll;
  }

  .nav-wrap>ul li {
    width: 100%;
    border-top: 1px solid #374760;
    position: relative;
  }

  .nav-wrap>ul>li:last-child {
    border-bottom: 1px solid #374760;
  }

  .nav-wrap>ul>li a {
    width: 100%;
    margin: 0;
    font-size: 20px;
    width: 100%;
    display: block;
    padding: 20px 6% 21px 6%;
    color: #fff;
  }

  ul li span.down-arrow {
    position: absolute;
    height: 64px;
    width: 50px;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    user-select: none;
  }

  .nav-wrap ul li a:not(:only-child) {
    width: auto;
    display: inline-block;
  }

  .nav-wrap>ul li.has-submenu:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    left: inherit;
    right: 34px;
    font-size: 16px;
    margin-top: -7px;
    position: absolute;
    top: 33px;
    color: #fff;
  }

  .nav-wrap ul ul a {
    padding-left: 9%;
  }
}


@media only screen and (max-width: 767px) {

  .export-sec img {
    width: 100%;
  }

  .home-content {
    height: 70vh;
    padding-top: 100px;
  }

  .icon-line {
    width: 100px;
    height: 2px;
    background-color: var(--color-theme-sec);
    flex-shrink: 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    align-items: self-start;
    padding: 50px 0;

  }

  .bg-video-wrapper {
    position: absolute;
    width: 100%;
    height: 85%;
    top: 0px;
    left: 0px;
    z-index: 1;
  }

  .about-s-img img {
    width: 100%;
    margin: auto;
    display: block;
    padding-top: 100px;
  }

  .uls {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
  }

  .footer-data {
    flex-direction: column;
    gap: 24px;
    text-align: left;
    align-items: start;
  }

  .footer {
    background-color: var(--color-main-theme);
    padding: 150px 0 20px;
  }

  .tag img {
    z-index: 9999;
    position: absolute;
    bottom: 20px;
    width: 150px;
    right: 20px;
  }

  .footer-tag img {
    width: 200px;
    margin: auto;
    display: block;
    padding-bottom: 30px;
  }

  .logo-footer {
    padding: 15px 0;

  }

  .logo-footer p {
    padding-top: 15px;
  }

  h1 {
    font-size: 30px !important;
  }

  .contact-forms {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-form {
    margin: 0px 0px 0 0px;
    border-radius: 10px;
  }

  .swiper-slide>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #fff; */
  }

  .mySwiper .swiper-slide .img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: auto;
    background: #fff;
    /* border: 2px solid #afadad; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }

  .footer-menu {
    padding-left: 0px;
  }

  .navbar-brand img {
    width: 150px;
  }

  .navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    padding-bottom: 50px;
    text-align: left;
  }

  .navbar-nav {
    flex-direction: column !important;
    gap: 0px !important;
    flex-wrap: wrap !important;
  }

  .logo img {
    width: 175px;
  }

  .about-section {
    padding: 100px 0;
    margin-top: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

  .export-sec img {
    width: 100%;
  }

  .contact-forms {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: self-start;
    padding: 50px 0;

  }

  .contactttt {
    position: relative;
    top: 0px;
  }

  .footer {
    background-color: var(--color-main-theme);
    padding: 100px 0 20px;
  }

  .cform {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .about-s-img img {
    width: 80%;
    margin: auto;
    display: block;
    padding-top: 100px;
  }

  .contact-form {
    margin: 0px 0px 0 0px;
    border-radius: 10px;
  }

  .navbar-nav {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }

  .navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    padding-bottom: 50px;
  }

  .about-section {
    padding: 100px 0;
    margin-top: 0px;
  }
}




/*  */

/* animation */
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: var(--animation-timing-function);
  animation-timing-function: var(--animation-timing-function);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: var(--animation-duration);
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
  animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
  animation-name: zoomReverseIn;
}

.flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  animation-direction: reverse;
}

.parent {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 8px;
  height: 80vh;
}

.parent div {
  DISPLAY: flex;
  ALIGN-ITEMS: end;
  JUSTIFY-CONTENT: END;
  color: #fff;
  font-size: 22px;
  padding: 0px 20px 15px;
}

.div1 {
  grid-column: span 2 / span 2;
  grid-row: span 4 / span 4;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://new.simonzatile.com/images/view/AGATHA%20BLACK.jpg);
  background-size: cover;
  background-position: center;
}

.div2 {
  grid-column: span 4 / span 4;
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  background-size: cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://new.simonzatile.com/images/view/ARMOUR.jpg);
  background-position: center;
  background-size: cover;

}

.div3 {
  grid-column: span 4 / span 4;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 5;
  background-size: cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://new.simonzatile.com/images/view/IMPACT%20STATUARIO.jpg);
  background-position: center;
  background-size: cover;

}

.div4 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 5;
  grid-row-start: 5;
  background-size: cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://new.simonzatile.com/images/view/WHITE-RUMBLE.jpg);
  background-position: center;
  background-size: cover;

}

.div5 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 3;
  background-size: cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://new.simonzatile.com/images/view/matt/INFINITY%20DOVE.jpg);
  background-position: center;
  background-size: cover;

}

.div6 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 5;
  grid-row-start: 3;
  background-size: cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://new.simonzatile.com/images/view/glossy/BOSTON%20BEIGE.jpg);
  background-position: center;
  background-size: cover;

}


.parent .cta {
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  padding-top: 15px;
  color: #fff;
}

.parent .cta span {
  padding-bottom: 7px;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
  padding-right: 15px;
  color: #fff;

  /* text-transform: uppercase; */
}

.parent .cta svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: #fff;

}

.parent .cta:hover svg {
  transform: translateX(0);
}

.parent .cta:active svg {
  transform: scale(0.9);
}

.parent .hover-underline-animation {
  position: relative;
  color: black;
  padding-bottom: 20px;
  color: #fff;

}

.parent .hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  background-color: #fff;
}

.parent .cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.uls a:hover {
  color: var(--color-theme-sec);
  transition: all .5s ease-in-out;
}

.animated-link {
  /* Basic Text Styles */
  color: #fff;
  text-decoration: none;
  padding-bottom: 2px;
  /* Space between text and border */
  position: relative;
  display: inline-block;
  /* Essential for containing the ::after element */
}

.animated-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  transform: translateX(0%);
  height: 2px;
  /* Border thickness */
  width: 0px;
  /* **Initial 20px width** */
  background-color: var(--color-theme-sec);
  /* Border color */

  /* Animation/Transition Settings */
  transition: width 0.3s ease-out;
  /* Smooth animation over 0.3 seconds */
}

.animated-link:hover::after {

  width: 100%;
  color: var(--color-theme-sec);
}

.animated-link:hover {

  color: var(--color-theme-sec);
}

#site-header {
  /* Set the position to fixed */
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  /* Use your header's background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

  /* ⬅️ Add a transition for smooth reveal/hide */
  transition: top 0.3s ease-in-out;
}

/* This class will be added by JavaScript to show the header */
#site-header.header-visible {
  top: 0;
  /* ⬅️ Bring the header back into view */
}




/* 3011 */

.tile-calc {
  background-color: var(--color-main-theme);
  padding: 200px 0;
  text-align: center;
}

.tile-calc h2 {
  color: #fff;
  text-align: center;
}

.tile-calc p {
  color: #fff;
}

/* .responsivecal{
      border-right: 1px solid #e3e3e3;
    padding-right: 50px;
} */
.blocks {
  border-right: 1px solid #e3e3e3;
  padding-right: 30px;
}

.c-title {
  background-color: transparent;
  color: var(--color-main-theme);
  padding: 0px 0 15px;
  font-size: 36px;
  /* letter-spacing: 2px; */
  border-bottom: 2px solid var(--color-main-theme);
  font-weight: 600;
  margin-bottom: 25px;

}

.c-heading {
  box-sizing: border-box;
  /* font-size: 14px; */
  margin: 10px 0;
  padding: 15px;
  width: 100%;
  border: 1px solid #dfdfdf;
  background: transparent;
  color: #a4a2a2;
}

.sr-button.button-2 {
  background-color: transparent;
  color: var(--color-main-theme);
  width: max-content;
  cursor: pointer;
  padding: 8px 25px;
  border: 1px solid var(--color-main-theme);
  margin-top: 10px;
  border-radius: 5px;
  font-size: 22px;

}

.c-result .c-label {
  margin-right: 10px;
  text-align: left;
  line-height: 25px;
  padding-top: 14px;
}

.hg-tiles-calc h6,
.hg-tiles-calc {
  color: #000 !important;
  font-size: 14px !important;
}

.c-result .c-label {
  font-size: 14px !important;
}

.woocommerce label,
.woocommerce-js label {
  font-size: 14px !important;
}

.tileDiv {
  background: none repeat scroll 0 0;
  display: inline-block;
  height: 315px;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  background-color: #fff;
  color: #000;
}

.tileDiv div {
  border: 1px solid #000000;
  border-top-color: rgb(0, 0, 0);
  border-top-style: solid;
  border-top-width: 1px;
  border-right-color: rgb(0, 0, 0);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgb(0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: rgb(0, 0, 0);
  border-left-style: solid;
  border-left-width: 1px;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  box-shadow: 0 0 8px 5px #fff !important;
  left: 52% !important;
  position: absolute !important;
  top: 43% !important;
  transform: translateX(-50%) translateY(-50%) !important;
  background: url(https://www.lemstoneceramic.com/public/img/tilePattern.png) repeat scroll -4px -4px;
  ;
  filter: grayscale(1);
}

.tileDiv .tileFt {
  background: #868686 none repeat scroll 0 0;
  margin-bottom: 0;
  padding: 0;
  position: absolute;
  text-align: center;
}

.tileDiv .horzFt span {
  margin-left: 50%;
  margin-top: -12px;
  transform: translateX(-50%);
}

.tileDiv .tileFt span {
  background: #f9f9f9 none repeat scroll 0 0;
  color: gray;
  display: block;
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  position: absolute;
  text-transform: uppercase;
  width: 50px;
}

.horzFt {
  border-top: 1px dashed #868686;
  height: 0;
  left: 0;
  top: -20px;
  width: 100%;
}

.vertFt {
  border-left: 1px dashed #868686;
  height: 100%;
  left: -20px;
  top: 0;
  width: 0;
}

.tileDiv .tileFt {
  background: #868686 none repeat scroll 0 0;
  margin-bottom: 0;
  padding: 0;
  position: absolute;
  text-align: center;
}

.tileDiv .tileFt span {
  background: #f9f9f9 none repeat scroll 0 0;
  color: gray;
  display: block;
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  position: absolute;
  text-transform: uppercase;
  width: 50px;
}

.tileDiv .vertFt span {
  margin-left: -27px;
  top: 50%;
  transform: rotate(-90deg) translateX(20%);
}

.c-label {
  /* padding-top: 15px; */
  font-size: 18px;
}

.tile-cal-pad {
  padding: 25px;
  border: 1px solid #e3e3e3;
}

.flex-f {
  /* display: flex; */
  gap: 15px;
}

.width-f {
  width: 100%;
}

.tiles-content {
  padding: 50px 0 0;
}

.tiles-content h2 {
  padding-bottom: 20px;
  font-size: 42px;
}

.tiles-content h3 {
  font-size: 25px;
  padding-bottom: 25px;
}

.tiles-content h4 {
  font-size: 18px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.inno-qc-tiles {
  padding: 100px 0;
}

.cal-res {
  /* background-color: #f5f5f5; */

}

.cal-res p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid #e3e3e3;
}

.measure-hed {
  padding-bottom: 15px;
}

.box-deg {
  padding: 25px;
  border: 1px solid #e3e3e3;
  margin-top: 50px;
}

.fix-btn {
  width: fit-content;
  margin: auto;
  display: block;
}



/*  */
.articles-section {
  padding: 80px 0px;
}

.articles-grid-container {
  display: grid;
  grid-template-columns: 58.5% 40%;
  grid-gap: 20px;
}

.article-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.two-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  align-items: start;
  padding-top: 30px;
}

.two-blog-grid .article-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.small-card {
  flex-direction: row;
}

.article-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.article-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Date Badge */
.article-date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #0b243a;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-size: 0.9em;
  z-index: 2;
}

.article-date .day {
  font-size: 1.4em;
  line-height: 1;
}

.article-date .month {
  font-size: 0.8em;
  line-height: 1;
}

.article-content {
  padding: 25px 25px 30px;
  flex-grow: 1;
}

.article-meta {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.article-meta .category {
  font-weight: 600;
  color: var(--color-main-theme);
  /* Highlight category */
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.article-card h2 {
  font-size: 1.5em;
  margin: 0 0 15px;
  color: #222;
  line-height: 1.3;
}

.article-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  display: inline-flex;
  /* To align arrow with text */
  align-items: center;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #0056b3;
}

.read-more .arrow {
  margin-left: 5px;
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.read-more:hover .arrow {
  transform: translateX(3px);
}


/* --- Specific Styles for Large Card --- */
.large-card .article-image-wrapper {
  padding-bottom: 45%;
}

.large-card h2 {
  font-size: 20px;
  font-family: 'Duplet';
}

.small-card .article-content {
  padding: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.small-card h2 {
  font-size: 20px;
  font-family: 'Duplet';
  margin-bottom: 10px;
}

.small-card p {
  display: none;
}

.blog-small {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.article-card:hover .article-image-wrapper img {
  transform: scale(1.05);
}

.article-content .cta span {
  font-weight: 500;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .articles-grid-container {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .large-card .article-image-wrapper {
    padding-bottom: 50%;
  }

  .large-card h2 {
    font-size: 1.6em;
  }
}

@media (max-width: 576px) {
  .articles-section {
    padding: 20px 15px;
  }

  .article-content {
    padding: 20px;
  }

  .article-card h2 {
    font-size: 1.3em;
  }

  .large-card h2 {
    font-size: 1.4em;
  }

  .article-date {
    bottom: 15px;
    right: 15px;
    padding: 6px 10px;
  }

  .article-date .day {
    font-size: 1.2em;
  }

  .article-date .month {
    font-size: 0.7em;
  }
}

.w-map {
  padding-top: 50px;
}



.packing-det {
  padding: 20px 0 30px;
}

.packing-det h2 {
  text-align: center;
  padding-bottom: 30px;
}

.txt-c {
  text-align: center;
}

thead tr {
  font-size: 16px;
  background: #000;
}

.cataloguer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-data img {
  width: 100%;
  padding-bottom: 10px;
}

.product-data {
  border: 1px solid #f5f5f5;
  padding: 20px;

}

.p-name {
  text-align: center;
}

.size-finish {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.product-sec-new {
  padding: 100px 0;
}

/* Container must be relative to position the images absolutely inside */
.product-data {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* Add any other default card styling here (e.g., border, padding) */
}

/* Style for both images: Stacking and Sizing */
.product-data img {
  width: 100%;
  height: auto;
  display: block;

  /* Crucial: Stack the images on top of each other */
  position: absolute;
  top: 0;
  left: 0;

  /* Add a transition for a smooth visual effect */
  transition: opacity 0.3s ease-in-out;
}

/* Default State: Set initial opacity */
.product-data .default-img {
  opacity: 1;
  /* Show this image */
}

.product-data .hover-img {
  opacity: 0;
  /* Hide this image */
}

/* HOVER EFFECT: Reverse the opacity */
.product-data:hover .default-img {
  opacity: 0;
  /* Hide the default image */
}

.product-data:hover .hover-img {
  opacity: 1;
  /* Show the hover image */
}

/* Ensure the detail content is layered above the stacked images */
.product-data .product-detail {
  position: relative;
  z-index: 10;
  /* other styles... */
}

/* 1. Define the wrapper for the images to control stacking */
.product-data .product-image-layer {
  /* Crucial: This must be relative to contain the absolute images */
  position: relative;

  /* Ensure this layer covers the area where the image should appear */
  width: 100%;
  /* You must define a height for this container! */
  height: 35vh;
  /* Adjust this value to match your product card design */

  overflow: hidden;
}

/* 2. Style for both images: Stacking and Sizing within the layer */
.product-data .product-image-layer img {
  width: 100%;
  height: 100%;
  /* Fill the height of the relative parent */
  display: block;

  /* Crucial: Stack the images on top of each other */
  position: absolute;
  top: 0;
  left: 0;

  /* Add a transition for a smooth visual effect */
  transition: opacity 0.3s ease-in-out;
}

/* 3. Default State: Set initial opacity */
.product-data .default-img {
  opacity: 1;
  /* Show this image */
  object-fit: cover;
}

.product-data .hover-img {
  opacity: 0;
  /* Hide this image */
  object-fit: contain;

}

/* 4. HOVER EFFECT: Reverse the opacity */
/* We use the main .product-data hover to trigger the change inside the layer */
.product-data:hover .default-img {
  opacity: 0;
  /* Hide the default image */
}

.product-data:hover .hover-img {
  opacity: 1;
  /* Show the hover image */
  object-fit: contain;
}

/* 5. Ensure the detail content is in its normal flow (or positioned as needed) */
.product-data .product-detail {
  /* Since .product-data isn't relative, the detail section flows normally below the image layer */
  /* Add your specific detail styles here */
}

.product-heading {
  text-align: center;
  padding: 50px 0;
}


.about {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.534), rgba(0, 0, 0, 0.521)), url("../images/view/chicaco.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px;
}

.about h2 {
  color: #fff;
}

.about-us-section {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  align-items: center;
  /* Vertically align content */
  padding: 100px 0;
  position: relative;
  /* Needed for any absolutely positioned elements within */
}

/* --- LEFT IMAGE COLUMN --- */
.image-column {
  position: relative;
  z-index: 1;
  /* Ensure images are on top of any background elements */
}

.image-wrapper {
  position: relative;
  /* Context for absolute positioning of cards and badge */
  width: 100%;
  height: 65vh;
}

.main-image-card,
.bottom-image-card {
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  /* 🔑 ABSOLUTE POSITIONING for overlapping images */
}

.main-image-card img,
.bottom-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cover the card area */
  display: block;
}

/* Top-left image card */
.main-image-card {
  width: 60%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 2;
  /* On top */
}

/* Bottom-right overlapping image card */
.bottom-image-card {
  width: 80%;
  height: 70%;
  bottom: 0;
  right: 0;
  z-index: 1;
  /* Behind the main image */
}

/* Experience Badge */
.experience-badge {
  background-color: var(--color-main-theme);
  /* Bright green color */
  color: white;
  padding: 20px 25px;
  border-radius: 20px;
  position: absolute;
  /* 🔑 ABSOLUTE POSITIONING for the badge */
  bottom: -30px;
  /* Adjust to overlap the bottom image */
  left: -20px;
  /* Adjust to overlap the left edge */
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 3;
  /* Ensure it's on top of both images */
  border: 3px solid white;
  /* White border as seen in the image */
}

.experience-badge p:first-child {
  font-size: 40px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 700;
}

.experience-badge p:last-child {

  margin-top: 0;
  color: #fff;

}


/* --- RIGHT CONTENT COLUMN --- */
.content-column {
  position: relative;
  /* Context for vertical text and signature */
  padding-left: 80px;
  /* Space from the images */

}

/* Vertical "ABOUT US" text */
.vertical-text {
  position: absolute;
  /* 🔑 ABSOLUTE POSITIONING for vertical text */
  left: 0;
  top: 12%;
  transform: translateY(-50%) rotate(-90deg);
  /* Rotate and center vertically */
  transform-origin: left center;
  /* Important for rotation origin */
  font-weight: 600;
  color: #b0b0b0;
  /* Light gray */
  letter-spacing: 3px;
  white-space: nowrap;
  /* Keep on one line */
  text-transform: uppercase;
}




.signature img {
  max-width: 200px;
  /* Adjust signature size */
  height: auto;
  display: block;
}

.sec-two-avt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-top: 10px;
}

.modern {
  padding: 15px;
  border: 1px solid #0b243a;
  border-radius: 20px;
  text-align: center;
}

.quality {
  padding: 15px;
  border: 1px solid #0b243a;
  border-radius: 20px;
  text-align: center;

}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .about-us-section {
    grid-template-columns: 1.1fr 1.9fr;
    /* Adjust column ratio */
    padding: 30px 0;
  }


  .content-column {
    padding-left: 60px;
    padding-right: 40px;
  }

  .image-column {
    padding-left: 40px;
  }

  .experience-badge {
    bottom: -20px;
    left: -10px;
    padding: 15px 20px;
  }

  .experience-badge p:first-child {
    font-size: 1.5em;
  }

  .experience-badge p:last-child {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .about-us-section {
    grid-template-columns: 1fr;
    /* Stack columns vertically */
    min-height: auto;
    padding: 40px 0px;
  }

  .image-column {
    padding: 0 0px 60px 0px;
    /* Adjust padding, add more bottom space for badge */
    display: flex;
    /* Use flex to center the image wrapper */
    justify-content: center;
  }

  .image-wrapper {
    width: 100%;
    /* Take full width */
    max-width: 500px;
    /* Constrain max size for readability */
    padding-bottom: 70%;
    /* Adjust aspect ratio */
  }

  .main-image-card {
    width: 65%;
    height: 65%;
  }

  .bottom-image-card {
    width: 75%;
    height: 75%;
  }

  .experience-badge {
    bottom: -30px;
    left: 23%;
    /* Center horizontally */
    transform: translateX(-50%);
    padding: 18px 25px;
  }

  .content-column {
    padding: 0 0px;
    text-align: center;
    /* Center text on mobile */
    margin-top: 40px;
    /* Space between images and text */
  }

  .vertical-text {
    position: static;
    /* Remove absolute positioning */
    transform: none;
    /* Remove rotation */
    display: block;
    /* Make it a block element */
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #888;
  }




  .signature {
    display: flex;
    /* Use flex to center the signature image */
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.8em;
  }

  .experience-badge {
    padding: 12px 18px;
  }

  .experience-badge p:first-child {
    font-size: 1.3em;
  }

  .experience-badge p:last-child {
    font-size: 0.9em;
  }
}

.whychoose {
  background-color: #e6e6e6;
  padding: 100px 0;
}

.why-choose-sim {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-choose-first {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.why-choose-second {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}

.second-choose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.choose-first-img img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgb(0 0 0 / 18%);
}

.under-sec {
  padding: 15px;
  /* border: 1px solid #0b243a; */
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .07);
}

.whychoose span {
  text-transform: uppercase;
  color: #616161;
  letter-spacing: 3px;
}

.main-number-sec {
  padding: 100px 0;
}

.number-sec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.counter-img img {
  width: 80%;
}

.counter-team {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 25px;
  align-items: center;
  border-bottom: 2px solid #e9e9e9;
  padding-bottom: 10px;
}

.items-cou {
  width: 450px;
}

.counter-num-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Optional: Basic Container and Reset */
.sustainability-section {
  padding: 100px 0;
  background-color: #e6e6e6;
  color: var(--text-color);
}

.eco-sec {
  padding: 0 20px;
  display: flex;
  gap: 50px;
  /* Space between text and images */
  align-items: center;
}

.eco-sec li {
  font-size: 18px;
  color: #616161;
}

/* --- Left Column (Text) --- */
.content-block {
  flex: 1;
  /* Takes up one part of the space */
  max-width: 50%;
  /* Limit width */
  position: relative;
}

.sub-heading {
  display: inline-block;
  /* font-size: 14px; */
  /* font-weight: bold; */
  color: #616161;
  letter-spacing: 3px;
  margin-bottom: 10px;
  position: relative;
}

/* Decorative line above subheading */
.sub-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: var(--accent-color);
}



.description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Large background text ("SUSTAINABLE") */
.large-text {
  position: absolute;
  bottom: -150px;
  /* Position below the main text area */
  left: 0;
  font-size: 160px;
  /* Huge font size */
  font-weight: 900;
  line-height: 1;
  color: rgb(11 36 58);
  /* Very faint white/light color */
  pointer-events: none;
  /* Allows clicks to go through to other content */
  z-index: 0;
  opacity: .1;
}


/* --- Right Column (Images) --- */
.image-block {
  flex: 1;
  /* Takes up one part of the space */
  max-width: 50%;
  position: relative;
  min-height: 600px;
  /* Define a minimum height to contain the absolute images */
}

.imgess {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.imgess img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures images cover their area without distortion */
}

/* Styling for the large image (Hands and Plant) */
.img-top-right {
  width: 70%;
  height: 400px;
  top: 0;
  right: 0;
  z-index: 2;
  /* Ensures it's above the smaller image if they overlap horizontally */
  border-radius: 10px;
}

/* Styling for the small image (Glowing Plant) */
.img-bottom-left {
  width: 50%;
  height: 350px;
  bottom: 0;
  left: 0;
  z-index: 3;
  /* Ensures it overlaps the larger image */
  border-radius: 10px;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {

  .content-block,
  .image-block {
    max-width: 100%;
    min-height: auto;
  }



  /* Reset image positioning for stacking */
  .img-top-right {
    position: static;
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }



  .image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .large-text {
    font-size: 100px;
    bottom: -50px;
  }
}

@media (max-width: 576px) {


  .large-text {
    font-size: 50px;
  }
}

.logo-grid-section {
  padding: 100px 0;
  /* Add some padding around the entire grid */
}

.logo-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  /* The "gap" creates the separation where borders would normally meet */
  border: 1px solid #e0e0e0;
  /* A single, subtle border around the *entire* grid if desired */
  background-color: #e0e0e0;
  /* Matches the border color to make the gaps appear as lines */
}

.logo-item {
  background-color: #ffffff;
  /* White background for each logo box */
  display: flex;
  /* Use flexbox to center the logo image inside the box */
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* Padding inside each box */
  min-height: 250px;
  /* Set a minimum height for consistency */
  box-sizing: border-box;
  /* Include padding in the element's total width and height */
  /* Remove individual borders from here; the grid gap and container border handle it */
}

.logo-item img {
  max-width: 80%;
  /* Ensure logos don't get too large */
  max-height: 100px;
  /* Max height for logo image */
  height: auto;
  display: block;
  /* Remove extra space below image */
}

.logo-grid-section h2 {
  text-align: center;
  padding-bottom: 30px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .logo-grid-container {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on slightly smaller screens */
    grid-template-rows: repeat(auto-fit, 1fr);
    /* Adjust rows automatically */
  }
}

@media (max-width: 768px) {
  .logo-grid-container {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns on tablet */
  }
}

@media (max-width: 576px) {
  .logo-grid-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
  }
}

@media (max-width: 400px) {
  .logo-grid-container {
    grid-template-columns: 1fr;
    /* Single column on very small mobile */
  }
}


.export-header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.text-block {
  flex: 2;
  /* Takes more space than the stats block */
  max-width: 650px;
}


.stats-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Align to the right */
  gap: 25px;

}

.export-count {
  font-size: 110px;
  /* Large, bold number */
  font-weight: 700;
  color: #dab870;
  /* Gold/Bronze color from the image */
  line-height: 1;
  font-family: QuickSilver;
  letter-spacing: 5px;
}

.export-meta {
  display: flex;
  flex-direction: column;
  max-width: 250px;

}

.meta-label {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 5px;
  white-space: nowrap;
}

.table {
  font-size: 16px;
  letter-spacing: 1px;
}

.pack {
  max-width: 800px;
  margin: auto;
  padding-bottom: 15px;
}

.heading-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.certification-sec {
  padding: 100px 0;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding-top: 50px;
}

.certificate-d img {
  width: 100%;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.certificate-d {
  padding: 10px;
  border: 1px solid #d4d4d4;
}

.exporter {
  padding: 100px 0;
  background-color: #e6e6e6;
}

.global-export-section {
  padding: 100px 0;
}

.universal-market-section {
  display: grid;
  /* Use Flexbox for a two-column layout */
  grid-template-columns: repeat(2, 1fr);

  gap: 50px;
  /* Space between the text and visual columns */
  align-items: flex-start;
  /* Align items to the top (important for the image not stretching) */
}

.text-content {
  flex: 2;
  /* This column will take up more space (e.g., 2/3 of available width) */
  padding-right: 50px;
  /* Add some internal padding */
}

.visual-content {
  flex: 1;
  /* This column will take up less space (e.g., 1/3 of available width) */
  display: flex;
  /* Use flex to stack the images/logo vertically */
  flex-direction: column;
  align-items: flex-start;
  /* Align items to the left within this column */
  gap: 20px;
  /* Space between the top image and the logo */
  padding-top: 5px;
  /* Slightly push images down if needed to align with text */
  position: relative;

}

.visual-content img {
  max-width: 100%;
  /* Ensure images are responsive and fit within their column */
  height: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Remove extra space below images */
  border-radius: 10px;
  /* Subtle rounded corners for images */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.visual-content .logo-image {
  background-color: #ffffff;
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  z-index: 99999;
  left: -50px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .universal-market-section {
    flex-direction: column;
    /* Stack columns vertically on smaller screens */
    margin: 50px auto;
    /* Adjust margin for smaller screens */
    padding: 15px;
  }

  .text-content {
    flex: auto;
    /* Allow text content to take full width */
    padding-right: 0;
    margin-bottom: 30px;
    /* Space between text and visuals when stacked */
  }

  .visual-content {
    flex: auto;
    /* Allow visual content to take full width */
    align-items: center;
    /* Center visuals when stacked */
    gap: 30px;
    /* Increase gap slightly for stacked elements */
  }

  .visual-content img:not(.logo-image) {
    width: 100%;
    /* Ensure the main image is full width */
  }

  .visual-content .logo-image {
    max-width: 300px;
    /* Adjust logo size if needed for mobile */
    width: 80%;
    /* Ensure logo is responsive */
    padding: 20px 40px;
  }

}

.utility {
  padding: 50px 0;
}

.utility h2 {
  padding-bottom: 0px;
  text-align: center;
}

.top80 {
  margin-top: 82px;
}

.table thead tr {
  background-color: #000;
}

.small-card .article-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  padding-right: 25%;
  overflow: hidden;
}

/* Mega menu container */
ul.sub-nav.mega-menu {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  /* hide by default */
  z-index: 999;
}

/* Show mega menu on hover */
li.dropdown-menu-wrapper:hover>ul.sub-nav.mega-menu {
  display: flex;
  align-items: flex-start;
}

/* Left column (links) */
.menu-left {
  display: grid;
  grid-template-columns: 1fr;
  /* 2-column grid */
  gap: 10px;
  list-style: none;
  padding: 0;
  width: 200px;
}

/* Style links */
.menu-left li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  transition: background 0.3s;
}

.menu-left li a:hover {
  background-color: #f0f0f0;
}

/* Right column (image) */
.menu-right {
  min-width: 150px;
}

.menu-right img {
  width: 100%;
  /* adjust as needed */
  height: 40vh;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.about h2 {
  font-family: Duplet;
}

.catalogue-section {
  padding: 50px 0 100px;
}

.intro-section,
.outro-section {
  margin-top: 80px;
  text-align: center;
  padding: 50px 0 0;
}

.intro-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.intro-section p {
  margin: 0
}

.scroll-indicator {
  margin-top: 50px;
  position: relative;
  width: 30px;
  height: 50px;
  border: 2px solid #555;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.scroll-indicator span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #555;
  border-radius: 50%;
  margin-top: 8px;
  animation: scrollAnimation 1.5s infinite ease-in-out;
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(15px);
    opacity: 0.5;
  }

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

.catalogue-header {
  text-align: center;
  margin-bottom: 60px;
}

.catalogue-header h2 {
  font-size: 2.5em;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.catalogue-header .icon-line {
  width: 60px;
  height: 3px;
  background-color: #A08C75;
  margin: 0 auto 15px;
  border-radius: 3px;
}


/* ===== GRID DESIGN ===== */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== PRODUCT CARD BOX ===== */
.catalogue-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2, 8, 20, .08), 0 2px 10px rgba(2, 8, 20, .06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.catalogue-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* ===== PRODUCT IMAGE WRAPPER ===== */
.catalogue-image {
  position: relative;
  overflow: hidden;
}

/* ===== IMAGE ===== */
.catalogue-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ===== IMAGE HOVER EFFECT ===== */
.catalogue-item:hover img {
  transform: scale(1.07);
}

/* ===== OVERLAY EFFECT ===== */
.catalogue-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.catalogue-item:hover .catalogue-image::after {
  background: rgba(0, 0, 0, 0.45);
}

/* ===== BUTTONS ON IMAGE ===== */
.catalogue-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  display: flex;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 2;
}

/* ===== SHOW ON HOVER ===== */
.catalogue-item:hover .catalogue-buttons {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: all;
}

.catalogue-buttons button {
  background-color: #0b243a;
  color: #fff;
  padding: 10px 18px;
  border: 1px solid #0b243a;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.catalogue-buttons button:hover {
  background-color: #fff;
  color: #0b243a;
  transform: scale(1.05);
}

/* ===== DETAILS SECTION (ALWAYS VISIBLE TITLE) ===== */
.catalogue-info {
  text-align: center;
  padding: 18px 20px 25px;
}

.catalogue-info h4 {
  font-weight: 500;
  margin-bottom: 0;
  color: #0b243a;
  letter-spacing: 1px
}

.tabs {
  display: flex;
  justify-content: start;
  gap: 20px;
  /* margin-bottom: 40px; */
  padding: 50px 0 0;
}

.tab-btn {
  padding: 5px 25px;
  border: 2px solid #0b243a;
  color: #0b243a;
  background: transparent;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #0b243a;
  color: #fff;
}

.tab-section {
  padding-top: 50px
}

/* --- Gallery Grid --- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 15px;
  padding: 0px 0 50px;
}

.grid-container>div {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.grid-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.grid-container>div:hover img {
  transform: scale(1.08);
}

/* --- Events Grid (Cards) --- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-bottom: 50px;
}

.event-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Image Area */
.event-img {
  position: relative;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.1);
}

/* Date Badge */
.event-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0b243a;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.event-content {
  padding: 20px 20px 60px;
  /* bottom padding for button */
  flex: 1;
  position: relative;
}

.event-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.event-location {
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Button pinned at bottom */
.event-btn {
  display: inline-block;
  background: #0b243a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  position: absolute;
  bottom: 15px;
  left: 20px;
}

.event-btn:hover {
  background: #0b243a;
  color: #fff;
}

/* Responsive */
@media(max-width:768px) {
  .con-h h2 {
    font-size: 28px;
  }

  .tabs {
    flex-direction: row;
    align-items: center;
  }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .catalogue-info h4 {
    font-size: 1.05em;
  }

  .catalogue-buttons button {
    font-size: 0.85em;
    padding: 8px 15px;
  }
}


@media only screen and (max-width: 767px) {
  .catalogue-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .why-choose-sim {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .second-choose {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .number-sec {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    align-items: center;
  }

  .eco-sec {
    padding: 0 20px;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-direction: column;
  }

  .knlowledge-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    text-align: center;
    padding-top: 50px;
  }

  .img-bottom-left {
    position: static;
    width: 100%;
    height: auto;
    margin: 0 auto;
    /* Center the smaller image */
  }

  .counter-img img {
    width: 100%;
  }

  .export-header-content {
    flex-direction: column;
  }

  .heading-flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .certificate-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    padding-top: 50px;
  }

  .universal-market-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    align-items: flex-start;
    margin: 0;
  }

  .world-map-placeholder img {
    width: 100%;
  }

  .export-count {
    font-size: 80px;
  }

  .small-card {
    flex-direction: column;
  }
  .result-grid {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 25px;
}
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {

  .catalogue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}