@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
:root{
  --primary-color: #11121a;
  --hover-color: #272832;
  --accent-color: #0071FF;
  --text-color: #c9c9c9;
}
.arabic {
  direction: rtl;
  
}
.english {
  direction: ltr;
}
.text {
  font-size: 26px; /* Adjust font size as needed */
  font-family: Arial, sans-serif; /* Choose your font family */
}
.orange {
  color: #ffa500; /* Color for 'O' and 'P' */
}

*{
  margin: 0;
  padding: 0;
}
body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
/* Navbar Container */
nav {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 0;
  z-index: 1000;
}

/* Navbar List */
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end; /* Align items to the right */
  align-items: center;
  padding: 0 0px;
}

/* Move "Oman Paints" to the left */
nav ul li:first-child {
  margin-right: auto; /* Push "Oman Paints" to the left */
}

nav li {
  height: 60px;
  position: relative;
}

nav a {
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
  transition: all 0.3s ease;
}

/* Hover Effect for Links */
nav a:hover {
  background-color: #f0f0f0;
  color: #007BFF;
  transform: translateY(-2px);
}

/* Dropdown Menu */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  direction: rtl;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.submenu li a {
  padding: 10px 20px;
  color: black;
  display: block;
  transition: background-color 0.3s ease;
}

.submenu li a:hover {
  background-color: #f0f0f0;
  color: #007BFF;
}

/* Show Dropdown on Hover */
.dropdown:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown Indicator */
.dropdown > a::after {
  content: "▼";
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Translator Container */
.translator-container {
  display: flex;
  align-items: center;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none; 
}
/* Ensure the page content is not shifted up */
body {
  top: 0% !important;
}

#google_translate_element {
  display: inline-block;
}
/* Translator Container */
.translator-container {
  display: flex;

}

#google_translate_element {
  display: inline-block;
}

/* Customize the Google Translate dropdown */
.goog-te-combo {
  padding: 5px 10px; /* Adjust padding to make it smaller */
  font-size: 14px; /* Adjust font size */
  border: 1px solid #ccc; /* Add a border */
  border-radius: 4px; /* Add rounded corners */
  background-color: white; /* Set background color */
  color: #333; /* Set text color */
  cursor: pointer; /* Add pointer cursor */
}

/* Hide the Google Translate branding */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important; /* Hide the "Google Translate" text */
}

/* Adjust the dropdown arrow */
.goog-te-combo::after {
  content: "▼";
  margin-left: 0px;
  font-size: 0.8em;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .translator-container {
    margin-left: 0px;
}
  .hideOnMobile {
      display: none;
  }

  .menu-button {
      display: block;
  }
}
/* Intro Section */
.intro-section {
  position: relative;
  height: 400px; /* Adjust height as needed */
  background-size: cover; /* Ensure the image covers the section */
  background-position: center; /* Center the image */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; /* Text color */
  overflow: hidden; /* Ensure the overlay doesn't overflow */
}
.intro-bg-1 {
  background-image: url('/2446.jpg');
}

.intro-bg-2 {
  background-image: url('/bg2.jpg');
  
}

.intro-bg-3 {
  background-image: url('/bg3.jpg');
}
.intro-bg-4 {
  background-image: url('bg4.jpg');
}
.intro-bg-5 {
  background-image: url('bg5.jpg');
}
.intro-bg-6 {
  background-image: url('bg6.jpg');
}
.intro-bg-7 {
  background-image: url('bg7.jpg');
}
/* Dark Overlay */
.intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
  z-index: 1; /* Place overlay above the background image */
}

/* Intro Content */
.intro-content {
  position: relative;
  z-index: 2; /* Place content above the overlay */
  max-width: 800px; /* Limit text width */
  padding: 20px;
  font-family: 'Amiri', serif; /* Arabic font */
}

.intro-content h1 {
  font-size: 2.5rem; /* Adjust heading size */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow to text */
}

.intro-content p {
  font-size: 1.2rem; /* Adjust paragraph size */
  margin-bottom: 30px;
  line-height: 1.8; /* Increase line height for better Arabic readability */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Add shadow to text */
}

/* New Button Styles */
.intro-button {
  display: inline-block; /* Make the anchor behave like a button */
  width: 165px;
  height: 62px;
  line-height: 62px; /* Center text vertically */
  cursor: pointer;
  color: #fff;
  font-size: 21px;
  border-radius: 1rem;
  border: none;
  position: relative;
  background: #12083fee;
  transition: 0.1s;
  text-decoration: none; /* Remove underline from anchor */
  font-family: 'Times New Roman', Times, serif;
  text-align: center; /* Center text horizontally */
}

.intro-button::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1) 17.8%, rgba(2, 245, 255, 1) 100.2%);
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.intro-button:active {
  transform: scale(0.9) rotate(3deg);
  background: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1) 17.8%, rgba(2, 245, 255, 1) 100.2%);
  transition: 0.5s;
}

/* Optional: Add Hover Effect */
.intro-button:hover {
  background: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1) 17.8%, rgba(2, 245, 255, 1) 100.2%);
  transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-section {
    height: 300px; /* Smaller height for mobile */
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .intro-content h1 {
    font-size: 2rem; /* Smaller heading for mobile */
  }

  .intro-content p {
    font-size: 1rem; /* Smaller paragraph for mobile */
  }

  .intro-button {
    width: 140px; /* Smaller button for mobile */
    height: 50px;
    line-height: 50px; /* Adjust line height for smaller button */
    font-size: 15px;
  }
}
.intro-button:hover {
  background-color: #0056b3; /* Darker color on hover */
  transform: translateY(-3px); /* Lift button on hover */
}
.parallax-section {
  position: relative;
  height: 400px;
  background-image: url('/3d-contemporary-empty-room.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(3, 3, 3);
}
.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
  z-index: 1; /* Place overlay above the background image */
}
.parallax-content {
  position: relative;
  z-index: 2;
}
.parallax-content p{
  font-size: 30px;
  padding-top: 20px;
}
.parallax-content h2{
  font-size: 50px;
}
@media (max-width: 768px) {
  .parallax-content p{
    font-size: 17px;
    max-width: 300px;
    padding-top: 20px;
  }
  .parallax-content h2{
    font-size: 30px;
  }
}
/* Buttons */
button {
  background-color: transparent;
  border: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

nav button {
  height: 100%;
  padding: 0 20px;
  color: #333;
}

nav button:hover {
  background-color: #f0f0f0;
  color: #007BFF;
}
/* Logo Styling */
.logo {
  width: 40px; /* Adjust logo size */
  height: 40px; /* Adjust logo size */
  margin-right: 10px; /* Space between logo and text */
  vertical-align: middle; /* Align logo with text */
}

/* Brand Text Container */
.brand-text {
  display: inline-block;
  vertical-align: middle; /* Align with logo */
}

/* "Oman Paints" Text Styling */
.oman-paints-text {
  font-weight: 600;
  font-size: 14px; /* Adjust font size as needed */
  color: #333; /* Default text color */
  text-align: left; /* Align text to the left */
}


.white {
  color: #333; /* Default color for "man" and "aints" */
}

/* Arabic Text Styling */
.arabic-text {
  font-weight: 600;
  font-size: 16px; /* Adjust font size as needed */
  color: #000000; /* Default text color */
  text-align: left; /* Align text to the left */
  direction: rtl; /* Ensure Arabic text is RTL */
}

/* Hover Effect for Brand Text */
.brand-text:hover .oman-paints-text,
.brand-text:hover .arabic-text {
  color: #007BFF; /* Change color on hover */
  transition: color 0.3s ease;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  direction: rtl;
  padding-top: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
  padding: 15px 20px;
  color: black;
  transition: background-color 0.3s ease;
}

.sidebar a:hover {
  background-color: #f0f0f0;
  color: #007BFF;
}

/* Menu Button */
.menu-button {
  display: none;
}

/* Responsive Design */
@media (max-width: 700px) {
  .hideOnMobile {
    display: none;
  }
  .arabic-text{
    display: none;
  }

  .menu-button {
    display: block;
  }

  .sidebar {
    display: flex;
  }
  
}

@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}
.container2 {
  padding: 0;
  
  width: auto; /* Ensure container takes full width */
  
}

.slider-wrapper {
  position: relative;
  max-width: 100%; /* Ensure slider doesn't exceed its container */
  margin: 0 auto;
  overflow: hidden; /* Hide overflow to create a sliding effect */
  direction: rtl; /* Set the direction to RTL */
}

.slider {
  display: flex;
  width: 100%; /* 100% for each slide (3 slides = 300%) */
  transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
}

.slider img {
  flex: 1 0 100%;
  flex-shrink: 0; /* Prevent images from shrinking */
  width: 70%;
  height:900px /* Make images take full height of the slider */
}

.slider-nav {
  display: flex;
  column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.slider-nav a {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.75;
  transition: opacity ease 250ms, background-color ease 250ms;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.719);
}

.slider-nav a:hover {
  opacity: 1;
  background-color: #007bff; /* Change color on hover */
}

.slider-nav a.active {
  opacity: 1;
  background-color: #007bff; /* Active dot color */
}

/* Responsive Adjustments */
@media (max-width: 700px) {
  .slider-wrapper {
    max-height: 500px; /* Adjust this value as needed for smaller screens */
    
  }

  .slider img {
    height: auto; /* Allow images to scale proportionally */
  }
}
/* From Uiverse.io by satyamchaudharydev */ 
/* === removing default button style ===*/
.button5 {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* Comment Slider Section */
.commentslider-2 {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: right; /* Align text to the right for RTL */
  overflow: hidden;
  position: relative;
}

.commentslider-2-container {
  display: flex;
  width: 100%; /* 3 slides = 300% width */
  transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
  direction: ltr
}

.commentslider-2-slide {
  flex: 1;
  min-width: 100%; /* Each slide takes full width */
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: space-between; /* Space between text and image */
}

.commentslider-2-content {
  flex: 1;
  margin-left: 20px; /* Add space between text and image */
}

.commentslider-2-user-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  order: 2; /* Move image to the right */
}

.commentslider-2-user-name {
  font-size: 1.5rem;
  padding-right: 30px;
  padding-top: 30px;
  margin-bottom: 10px;
  color: #333;
}

.commentslider-2-comment {
  font-size: 1.1rem;
  padding-right: 20px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Houses Section */
.modern-houses {
  padding: 2rem;
  text-align: center;
  background-color: #f9f9f9; /* Light background for contrast */
}

.modern-houses h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333; /* Dark text for contrast */
}

.modern-houses p {
  font-size: 1.2rem;
  color: #666; /* Subdued text color */
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 1.5rem; /* Space between items */
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.gallery-item img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover; /* Ensure images fill the container */
  border-radius: 10px 10px 0 0; /* Rounded corners only at the top */
}

.gallery-item p {
  padding: 1rem;
  font-size: 1.1rem;
  color: #333; /* Dark text for contrast */
  background-color: #fff; /* White background for text */
  margin: 0;
  border-radius: 0 0 10px 10px; /* Rounded corners only at the bottom */
}

/* Color Palette Section */
.color-palette {
  margin-top: 3rem;
  text-align: center;
}

.color-palette h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.color-cards {

  display: flex;
  height: 150px; /* Adjust height as needed */
  width: 100%;
  max-width: 600px; /* Limit width for better readability */
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px #dbdbdb;
}

.color-card {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  transition: flex 0.1s linear;
}

.color-card span {
  opacity: 0;
  transition: opacity 0.1s linear;
}

.color-card:nth-child(1) {
  background: #e9eae4;
}

.color-card:nth-child(2) {
  background: #d6ceb9;
}

.color-card:nth-child(3) {
  background: #0063c1;
}

.color-card:nth-child(4) {
  background: #abd694;
}



.color-card:hover {
  flex: 2;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.color-card:hover span {
  opacity: 1;
}

.stats {
  height: 40px; /* Adjust height as needed */
  width: 100%;
  max-width: 600px; /* Match width of color-cards */
  margin: 0 auto;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5em;
  box-sizing: border-box;
  color: #bebebe;
  border-radius: 0 0 10px 10px; /* Rounded corners at the bottom */
  box-shadow: 0 10px 20px #dbdbdb;
}

.stats svg {
  fill: #bebebe;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 700px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Smaller columns for mobile */
  }

  .gallery-item img {
    height: 150px; /* Smaller height for mobile */
  }
  
  .color-cards {
    flex-direction: column;

    height: 120px; /* Smaller height for mobile */
  }
}

main{
  margin: 50px;
}
p{
  padding-top: 20px;
  color: white;
  
}
h2{
  color: #ffffff;
}

.cta {
  position: relative;
  margin: 20px 0px;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #9476AB;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #234567;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #234567;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #9476AB;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}
a{
  text-decoration: none;
}
/* From Uiverse.io by adamgiebl */ 
.container {
  width: 100%;
  height: 100%;

  background: #000000;
  --gap: 5em;
  --line: 1px;
  --color: rgba(252, 57, 209, 0.397);

  background-image: linear-gradient(
      -90deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    ),
    linear-gradient(
      0deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    );
  background-size: var(--gap) var(--gap);
}
.card {
  position: relative; /* Needed for absolute positioning of child elements */
  display: flex;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  background-position: center;
  background-size: cover;
  height: 300px;
  margin: 30px;
  overflow: hidden; /* Ensures the blur effect stays within the card */
  transition: all 0.6s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.473); /* Adds shadow */
}

/* Overlay with blur effect */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.521); /* Semi-transparent dark overlay */
  backdrop-filter: blur(1px); /* Blur effect */
  z-index: 1;
}

.card:nth-child(1){
  background-image: url(/product/MASTIC\ MATT.jpg.png);
}
.card:nth-child(2){
  background-image: url(/product/ENAMEL\ GLOSS\ BIG.jpg.png);
}
.card:nth-child(3){
  background-image: url(/product/HOT\ BITUMEN.jpg.png);
}
.card:nth-child(4){
  background-image: url(thinner.jpg);
}
.card:nth-child(5){
  background-image: url(Grouts\ tile.png);
}
.info {
  border: none;
  padding: 1.5rem;
  
  text-align: center;
  position: relative;
  z-index: 2;
  color: white; /* Light text for better contrast */
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.title {
  color: rgb(255, 255, 255);
  letter-spacing: 0;
  line-height: 1.375;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer {
  padding: 0.75rem;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(252, 252, 252, 0.082);
}
.tag {
  font-weight: 300;
  font-size: .75rem;
  display: block;
}
.action {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: none;
  z-index: 3; /* Higher than overlay (optional) */

  outline: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4),0 2px 4px -2px rgba(33,150,243,.4);
  color: rgb(255 255 255);
  text-transform: uppercase;
  font-weight: 700;
  font-size: .75rem;
  padding: 0.75rem 1.5rem;
  
  background-color: #9476AB;
  border-radius: 0.5rem;
}

.card:hover{
  transform: scale(1.05);
}
.grid-container{
  display: grid;
  
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 15px;
  justify-content: center;



}
main h2{
  color: #614377;
}
main p{
  color: black;
  max-width: 600px;
  font-size: 20px;
}
/* From Uiverse.io by Yaya12085 */ 
.form2 {
  display: flex;
  flex-direction: column;
  background: #606c88;
  background: -webkit-linear-gradient(to right, #3f4c6b, #31394d);
  background: linear-gradient(to right, #7a5f96, #4a3457);
  padding: 20px;
  
  max-width: 100%
}

.title2 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}

.description2 {
  line-height: 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
  color: rgb(209 213 219);
}

.form2 div {
  display: flex;
  max-width: 28rem;
  margin-top: 1rem;
  column-gap: 0.5rem;
}
.card button a{
  color: #ffffff;
}

.form2 div input {
  outline: none;
  line-height: 1.5rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 );
  padding: 0.5rem 0.875rem;
  background-color: rgb(255 255 255 / 0.05);
  border: 1px solid rgba(253, 253, 253, 0.363);
  border-radius: 0.375rem;
  flex: 1 1 auto;
}

.form2 div input::placeholder {
  color: rgb(216, 212, 212);
}

.form2 div input:focus {
  border: 1px solid rgb(99 102 241);
}

.form2 div button {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.625rem 0.875rem;
  background-color: rgb(99 102 241);
  border-radius: 0.375rem;
  border: none;
  outline: none;
}
.div-space{
  margin-top: 20px;

}

footer{
  background-color: #111;
}
.footerContainer{
  width: 100%;
  padding-top: 20px;
}
.socialIcons{
  display: flex;
  justify-content: center;
}
.socialIcons a{
  text-decoration: none;
  padding:  10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
}
.socialIcons a i{
  font-size: 2em;
  color: black;
  opacity: 0,9;
}
/* Hover affect on social media icon */
.socialIcons a:hover{
  background-color: #111;
  transition: 0.5s;
}
.socialIcons a:hover i{
  color: white;
  transition: 0.5s;
}
.footerNav{
  margin: 30px 0;
}
.footerNav ul{
  display: flex;
  justify-content: center;
  list-style-type: none;
}
.footerNav ul li a{
  color:white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
  transition: 0.5s;

}
.footerNav ul li a:hover{
  opacity: 1;
}
.footerBottom{
  background-color: #000;
  padding: 20px;
  text-align: center;
}
.footerBottom p{
  color: white;
}
.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}
@media (max-width: 700px){
  .footerNav ul{
      flex-direction: column;
  } 
  .footerNav ul li{
      width:100%;
      text-align: center;
      margin:  10px 0px;
  }
  .socialIcons a{
      padding: 8px;
      margin: 10px;
  }
}
/* About Us section with parallax background - Enhanced Mobile Version */
.about-us {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/mock-up-poster-frame-modern-interior-background-living-room-scandinavian-style-generative-ai-illustration.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.about-us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for better text contrast */
  z-index: -1;
}

.container-about {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.image {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image:hover {
  transform: translateY(-5px);
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease-in-out;
}

.image:hover img {
  transform: scale(1.03);
}

.text {
  flex: 1;
  color: white;
}

.text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
}

.text h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #aed8e7;
  margin-top: 15px;
}

.text p {
  font-size: 1.9rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #f0f0f0;
}

/* Stats Section */
.about__stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat__item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat__number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #aed8e7;
  display: block;
  margin-bottom: 5px;
}

.stat__label {
  font-size: 1rem;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .container-about {
    gap: 40px;
  }
  
  .text h1 {
    font-size: 2.2rem;
  }
  
  .about__stats {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 60px 0;
  }
  
  .container-about {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
  }
  
  .text h1 {
    font-size: 2rem;
  }
  
  .text h1::after {
    margin: 15px auto;
  }
  
  .about__stats {
    flex-direction: column;
    gap: 25px;
  }
  
  .stat__item {
    margin-bottom: 15px;
  }
  
  .about-us::before {
    background-attachment: scroll; /* Disable parallax on mobile */
    background-position: center center;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 50px 0;
  }
  
  .text h1 {
    font-size: 1.8rem;
  }
  
  .text p {
    font-size: 1.8rem;
  }
  
  .stat__number {
    font-size: 1.8rem;
  }
}
/* Values section */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 80px;
  padding: 0 20px;
  position: relative; /* Ensure content is above the overlay */
  z-index: 1; /* Place content above the overlay */
}

.value-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 30px;
  margin-bottom: 20px;
  background: #9476ab; /* Semi-transparent white background */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.value-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.value-item:hover img {
  transform: scale(1.1);
}

.value-item h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.image img {
  animation: fadeIn 1s ease-in-out;
}

.text {
  animation: slideIn 1s ease-in-out;
}
/* From Uiverse.io by Juanes200122 */ 
.container-pattern {
  width: 100%;
  height: 100%;
  /* Add your background pattern here */
  background-color: #ffffff;
  background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px;
}


/* Product Showcase Section */
.product-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  
}
#thinner img{
  object-fit:cover;
}
/* Product Card */
.product-card {
  width: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Product Image */
.product-image img {
  width: 100%;
  height: 200px;
  object-fit: fiLL; /* Ensures the image covers the area */
}

/* Product Details */
.product-details {
  padding: 20px;
  text-align: center;
}

.product-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.product-details p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-card {
    width: 100%;
    max-width: 400px;
  }
}
/* Contact Us Section */
.contact-us {
  padding: 50px 0px;
  width: 100%;
  height: 100%;
  /* Add your background pattern here */
  background-color: #eeeeee;
  background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px;
  
}

.container-contact{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}

.contact-us h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.contact-us p {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  padding: 0px 20px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 200px;
}

/* Contact Form */
.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  margin-left: 9px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}
/* Catalogue Download Section */
/* Catalogue Download Section - Mobile First Approach */
.catalogue-section {
  background: linear-gradient(to right, #fff9f2 0%, #ffffff 100%);
  padding: 40px 20px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

.catalogue-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.catalogue-content {
  text-align: center;
  direction: rtl;
}

.catalogue-content h2 {
  color: #ff6b00;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.catalogue-content p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 0 10px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff6b00;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 1rem;
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
}

.download-btn:hover {
  background: #e05d00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.download-btn i {
  margin-left: 8px;
}

.catalogue-image {
  text-align: center;
}

.catalogue-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  object-fit: contain;
}

/* Tablet View (768px and up) */
@media (min-width: 768px) {
  .catalogue-section {
    padding: 60px 30px;
  }
  
  .catalogue-container {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  
  .catalogue-content {
    text-align: right;
    flex: 1;
    padding-left: 20px;
  }
  
  .catalogue-content p {
    padding: 0;
  }
  
  .download-btn {
    width: auto;
    margin: 0;
  }
  
  .catalogue-image {
    flex: 1;
  }
}

/* Desktop View (1024px and up) */
@media (min-width: 1024px) {
  .catalogue-content h2 {
    font-size: 2.2rem;
  }
  
  .catalogue-content p {
    font-size: 1.1rem;
  }
  
  .download-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .catalogue-image img {
    max-height: 400px;
  }
}
/* Contact Info */
.contact-info {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
.info-item {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.2rem;
  color: #007BFF;
  margin-right: 10px;
  margin-top: 3px; /* Adjust icon alignment */
}

.contact-group {
  flex: 1;
}

.company-name {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 6px;
  color: #555;
}

.contact-list li span {
  display: inline-block;
  margin-right: 10px;
  direction: ltr; /* Ensures numbers display correctly (LTR) */
}

/* Social Media */
.social-media {
  margin-top: 20px;
}

.social-media h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.5rem;
  color: #007BFF;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #0056b3;
}

/* Map */
.map {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .subcompanies-links {
        flex-direction: column;
        align-items: center;
    }
    
    .subcompany-link {
        width: 80%;
        justify-content: center;
    }
}
/* Subcompanies Section */
.subcompanies {
    text-align: center;
    margin: 20px 0;
    padding: 0 20px;
}

.subcompanies-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.subcompanies-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.subcompany-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.subcompany-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.subcompany-logo {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .subcompanies-links {
        flex-direction: column;
        align-items: center;
    }
    
    .subcompany-link {
        width: 80%;
        justify-content: center;
    }
}
 /* WhatsApp Floating Button Styles */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 10px #666;
        }
        
        .whatsapp-float::after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid #25D366;
            border-radius: 50%;
            animation: ring 2s infinite;
            pointer-events: none;
            opacity: 0;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes ring {
            0% { transform: scale(0.8); opacity: 0.5; }
            100% { transform: scale(1.2); opacity: 0; }
        }
        
        /* Tooltip */
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }