@import url("fonts.css");
@import url("variables.css");

.bg-orange {
  background-color: var(--smart-orange);
}
body,
html {
  font-family: var(--font-primary);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.bg-blue {
  background-color: var(--smart-blue);
}

/* Navigation Bar Styles */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.navbar-logo {
  height: 45px;

  width: auto;
  vertical-align: middle;
}

.nav-link {
  color: var(--smart-blue);
  font-size: 20px;
  font-weight: 600;
}

.social-icon {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
  }

  .social-icon {
    width: 25px;
    height: 25px;
  }

  .nav-link {
    font-size: 16px; /* Professional font size for mobile */
  }
}

@media (max-width: 480px) {
  .nav-link {
    font-size: 14px; /* Professional font size for very small screens */
  }
}

/* About Us Header Section Styles */
.about-header {
  background-color: var(
    --smart-orange
  ); /* Orange background to match the image */
  padding: 40px 0;
  /* margin-top: 125px; */
}

.about-header-title {
  font-size: 48px; /* Professional font size for header */
  color: var(--white); /* White text to match the image */
  font-weight: 600; /* Medium boldness for a professional look */
  margin: 0;
}

@media (max-width: 768px) {
  .about-header {
    padding: 20px 0; /* Reduce padding on mobile */
  }

  .about-header-title {
    font-size: 32px; /* Professional font size for mobile */
  }
}

@media (max-width: 480px) {
  .about-header-title {
    font-size: 24px; /* Professional font size for very small screens */
  }
}

/* About Us Main Content Section Styles */
.about-content {
  padding: 60px 0;
  background-color: var(--white); /* White background to match the image */
}

.about-content-inner {
  display: flex;
  align-items: stretch; /* Ensure both divs have the same height */
  gap: 30px; /* Space between text and image */
}

.about-text {
  background-color: var(--white); /* White background for text */
  border-radius: 8px; /* Optional: Rounded corners */
  flex: 1; /* Allow text to take available space */
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for contrast */
}

.about-subtitle {
  font-size: 28px; /* Professional font size for subtitle */
  color: var(--smart-orange); /* Orange text to match the image */
  font-weight: 600; /* Medium boldness for a professional look */
  margin-bottom: 20px;
}

.about-description {
  font-size: 20px; /* Professional font size for description */
  color: var(--smart-blue); /* Blue text to match the image */
  font-weight: 400; /* Normal weight for readability */
  line-height: 1.6; /* Improve readability */
}

.about-image {
  flex: 1; /* Allow image to take available space */
  position: relative;
  overflow: hidden;
  border: 5px solid var(--smart-orange); /* Orange border to match the image */
  border-radius: 8px; /* Optional: Rounded corners */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image fills the area while maintaining aspect ratio */
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white); /* White text for contrast */
  background: rgba(0, 51, 160, 0.7); /* Semi-transparent blue overlay */
  padding: 10px 20px;
  border-radius: 4px; /* Optional: Rounded corners for overlay */
}

.overlay-text {
  font-size: 16px; /* Professional font size for overlay text */
  font-weight: 400; /* Normal weight for readability */
  margin: 5px 0;
}

.overlay-text-arabic {
  font-size: 14px; /* Professional font size for Arabic text */
  font-weight: 400; /* Normal weight for readability */
  direction: rtl; /* Right-to-left for Arabic text */
}

@media (max-width: 768px) {
  .about-content {
    padding: 30px 0; /* Reduce padding on mobile */
  }

  .about-content-inner {
    flex-direction: column; /* Stack text and image vertically on mobile */
    gap: 20px; /* Reduce gap on mobile */
  }

  .about-text,
  .about-image {
    flex: 1; /* Equal width on mobile */
    padding: 15px; /* Reduce padding on mobile */
  }

  .about-subtitle {
    font-size: 24px; /* Professional font size for mobile */
  }

  .about-description {
    font-size: 18px; /* Professional font size for mobile */
  }

  .about-image img {
    height: auto; /* Adjust height for mobile */
  }

  .overlay-text,
  .overlay-text-arabic {
    font-size: 12px; /* Professional font size for mobile */
  }
}

@media (max-width: 480px) {
  .about-subtitle {
    font-size: 20px; /* Professional font size for very small screens */
  }

  .about-description {
    font-size: 16px; /* Professional font size for very small screens */
  }

  .overlay-text,
  .overlay-text-arabic {
    font-size: 10px; /* Professional font size for very small screens */
  }
}

/* What Distinguishes Us Section Styles */
.distinguishes-us {
  background-color: var(
    --smart-orange
  ); /* Orange background to match the image */
  padding: 60px 0;
}

.distinguishes-title {
  font-size: 40px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 40px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  /* display: inline-block;  */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  color: var(--smart-blue);
  width: 50%;
  margin: 0 auto;
}

.nails-container {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevent nails from interfering with text clicks */
}

.nail-row {
  display: flex;
  justify-content: space-between; /* Place nails on left and right */
  width: 100%;
}

.nail-icon {
  width: 20px; /* Size of nail icons */
  height: auto;
}

.distinguishes-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 1200px;
  margin: 30px auto;
}

.distinguishes-icon-left,
.distinguishes-icon-right {
  flex: 0 0 auto;
}

.distinguishes-icon {
  width: 186px;
  height: 261px;
  object-fit: cover;
}

.distinguishes-box {
  background-color: var(--smart-blue);
  border-radius: 15px;
  /* flex: 0 0 calc(50% - 15px); */
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  /* transform: scale(1.3); */
  transition: transform 0.3s ease;
}

.distinguishes-box:hover {
  transform: scale(0.8);
}

.distinguishes-box-title {
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 10px;
}

.distinguishes-box-description {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .distinguishes-us {
    padding: 30px 0;
  }

  .distinguishes-title {
    font-size: 24px;
    padding: 8px 15px;
  }

  .nail-icon {
    width: 15px;
  }

  .distinguishes-content {
    flex-direction: column;
    gap: 20px;
  }

  .distinguishes-icon-left,
  .distinguishes-icon-right {
    align-self: center; /* Center icons on mobile */
  }

  .distinguishes-box {
    flex: 1; /* Full width on mobile */
    padding: 15px; /* Reduce padding on mobile */
  }

  .distinguishes-box-title {
    font-size: 20px; /* Professional font size for mobile */
  }

  .distinguishes-box-description {
    font-size: 14px; /* Professional font size for mobile */
  }

  .distinguishes-icon {
    width: 50px; /* Smaller icons on mobile */
    height: 50px; /* Adjust height for mobile */
  }
}

@media (max-width: 480px) {
  .distinguishes-title {
    font-size: 20px; /* Professional font size for very small screens */
  }

  .distinguishes-box-title {
    font-size: 18px; /* Professional font size for very small screens */
  }

  .distinguishes-box-description {
    font-size: 12px; /* Professional font size for very small screens */
  }

  .distinguishes-icon {
    width: 40px; /* Even smaller icons on very small screens */
    height: 40px; /* Adjust height for very small screens */
  }
}

/* Vision Section Styles */
.vision {
  padding: 0; /* Remove padding to fill height */
  background-color: var(--white); /* White background for contrast */
  overflow: hidden; /* Prevent overflow */
}

.vision-content {
  display: flex;
  height: 100%; /* Fill the viewport height */
  align-items: center; /* Vertically center content */
  justify-content: space-between; /* Space out image and text */
}

.vision-image {
  flex: 0 0 50%; /* Take 50% width for image */
  height: 100%; /* Fill the section height */
  position: relative;
  overflow: hidden;
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image fills the area while maintaining aspect ratio */
}

.parallax-image {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.vision-text {
  flex: 0 0 50%; /* Take 50% width for text */
  padding: 20px;
  background-color: var(--white); /* White background for text */
}

.vision-title {
  font-size: 40px; /* Professional font size for title */
  color: var(--smart-orange); /* Orange text to match the image */
  font-weight: 600; /* Medium boldness for a professional look */
  margin-bottom: 20px;
}

.vision-description {
  font-size: 22px; /* Professional font size for description */
  color: var(--smart-blue); /* Blue text to match the image */
  font-weight: 400; /* Normal weight for readability */
  line-height: 1.6; /* Improve readability */
}

/* Mission Section Styles */
.mission {
  padding: 0; /* Remove padding to fill height */
  background-color: var(--white); /* White background for contrast */
  overflow: hidden; /* Prevent overflow */
}

.mission-content {
  display: flex;
  height: 100%; /* Fill the viewport height */
  align-items: center; /* Vertically center content */
  justify-content: space-between; /* Space out text and image */
}

.mission-text {
  flex: 0 0 50%; /* Take 50% width for text */
  padding: 20px;
  background-color: var(--white); /* White background for text */
}

.mission-title {
  font-size: 40px; /* Professional font size for title */
  color: var(--smart-orange); /* Orange text to match the image */
  font-weight: 600; /* Medium boldness for a professional look */
  margin-bottom: 20px;
}

.mission-description {
  font-size: 22px; /* Professional font size for description */
  color: var(--smart-blue); /* Blue text to match the image */
  font-weight: 400; /* Normal weight for readability */
  line-height: 1.6; /* Improve readability */
}

.mission-image {
  flex: 0 0 50%; /* Take 50% width for image */
  height: 100%; /* Fill the section height */
  position: relative;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image fills the area while maintaining aspect ratio */
}

@media (max-width: 768px) {
  .vision,
  .mission {
    height: auto; /* Remove fixed height on mobile */
    padding: 30px 0; /* Add padding for mobile */
  }

  .vision-content,
  .mission-content {
    flex-direction: column; /* Stack image and text vertically on mobile */
    height: auto; /* Remove fixed height on mobile */
    gap: 20px; /* Add gap between image and text */
  }

  .vision-image,
  .mission-image {
    flex: 1; /* Full width on mobile */
    height: 300px; /* Fixed height for mobile images */
  }

  .vision-image img,
  .mission-image img {
    height: 100%; /* Ensure image fills the height */
  }

  .vision-text,
  .mission-text {
    flex: 1; /* Full width on mobile */
    padding: 15px; /* Reduce padding on mobile */
  }

  .vision-title,
  .mission-title {
    font-size: 24px; /* Professional font size for mobile */
  }

  .vision-description,
  .mission-description {
    font-size: 14px; /* Professional font size for mobile */
  }
}

@media (max-width: 480px) {
  .vision-image,
  .mission-image {
    height: 200px; /* Smaller height for very small screens */
  }

  .vision-title,
  .mission-title {
    font-size: 20px; /* Professional font size for very small screens */
  }

  .vision-description,
  .mission-description {
    font-size: 12px; /* Professional font size for very small screens */
  }
}

/* Our Values Section Styles */
.our-values {
  background-color: var(
    --smart-orange
  ); /* Orange background to match the image */
  padding: 60px 0;
}

.values-title {
  font-size: 32px; /* Professional font size for title */
  color: var(--white); /* White text to match the image */
  font-weight: 600; /* Medium boldness for a professional look */
  margin-bottom: 40px;
  background: var(
    --white
  ); /* Light gray background for metallic plate effect */
  padding: 10px 20px;
  border-radius: 10px; /* Rounded corners for plate effect */
  display: inline-block; /* Limit width to content */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for plate effect */
  position: relative; /* For positioning nails */
  text-align: center; /* Center the title */
  color: var(--smart-blue); /* Blue text for contrast */
  width: 50%; /* Limit width for a centered appearance */
  margin: 0 auto; /* Center horizontally */
}

.nails-container {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between nail rows */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevent nails from interfering with text clicks */
}

.nail-row {
  display: flex;
  justify-content: space-between; /* Place nails on left and right */
  width: 100%;
}

.nail-icon {
  width: 20px; /* Size of nail icons */
  height: auto;
}

.values-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the boxes */
  gap: 30px; /* Space between boxes */
  max-width: 1200px; /* Limit width for better alignment on large screens */
  margin: 30px auto; /* Center horizontally */
}

.value-box {
  background-color: var(--white); /* White background for boxes */
  border-radius: 15px; /* Rounded corners for boxes */
  flex: 0 0 calc(33% - 24px); /* 20% width for each box on desktop, accounting for gap */
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: center; /* Center text within boxes */
  transition: transform 0.3s ease; /* Smooth hover effect */
  min-width: 200px; /* Minimum width to prevent squishing on smaller desktops */
}

.value-box:hover {
  transform: scale(1.05); /* Slight scale on hover for interactivity */
}

.value-icon {
  width: 60px; /* Size of icons on desktop */
  height: auto;
  margin-bottom: 15px; /* Space below icon */
}

.value-title {
  font-size: 20px; /* Professional font size for titles on desktop */
  color: var(--smart-blue); /* Blue text to match the image */
  font-weight: 600; /* Medium boldness for a professional look */
  margin-bottom: 10px;
}

.value-description {
  font-size: 14px; /* Professional font size for descriptions on desktop */
  color: var(--black); /* Dark gray text for readability */
  font-weight: 400; /* Normal weight for readability */
  line-height: 1.6; /* Improve readability */
}

@media (max-width: 1024px) {
  /* Tablet screens (1024px and below) */
  .our-values {
    padding: 40px 0; /* Reduce padding for tablets */
  }

  .values-title {
    font-size: 28px; /* Slightly smaller title for tablets */
    padding: 8px 18px;
    width: 60%; /* Slightly narrower on tablets */
  }

  .values-content {
    gap: 25px; /* Reduce gap slightly for tablets */
  }

  .value-box {
    flex: 0 0 calc(33.33% - 16.67px); /* Three boxes per row on tablets */
    padding: 18px; /* Slightly reduce padding */
    min-width: 180px; /* Slightly smaller minimum width */
  }

  .value-icon {
    width: 50px; /* Smaller icons on tablets */
  }

  .value-title {
    font-size: 18px; /* Slightly smaller titles on tablets */
  }

  .value-description {
    font-size: 12px; /* Slightly smaller descriptions on tablets */
  }
}

@media (max-width: 768px) {
  /* Mobile screens (768px and below) */
  .our-values {
    padding: 30px 0; /* Further reduce padding for mobile */
  }

  .values-title {
    font-size: 24px; /* Smaller title for mobile */
    padding: 8px 15px;
    width: 70%; /* Wider on mobile for better visibility */
  }

  .nail-icon {
    width: 15px; /* Smaller nail icons on mobile */
  }

  .values-content {
    flex-direction: column; /* Stack boxes vertically on mobile */
    gap: 20px; /* Reduce gap for mobile */
  }

  .value-box {
    flex: 1; /* Full width on mobile */
    padding: 15px; /* Reduce padding on mobile */
    min-width: 0; /* Remove minimum width on mobile */
  }

  .value-icon {
    width: 40px; /* Smaller icons on mobile */
  }

  .value-title {
    font-size: 16px; /* Smaller titles on mobile */
  }

  .value-description {
    font-size: 12px; /* Smaller descriptions on mobile */
  }
}

@media (max-width: 480px) {
  /* Very small screens (480px and below) */
  .values-title {
    font-size: 20px; /* Even smaller title for very small screens */
    width: 90%; /* Full width on very small screens */
  }

  .value-title {
    font-size: 14px; /* Even smaller titles on very small screens */
  }

  .value-description {
    font-size: 10px; /* Even smaller descriptions on very small screens */
  }

  .value-icon {
    width: 30px; /* Even smaller icons on very small screens */
  }
}

/* CEO Message Section Styles */
.ceo-message {
  background-color: var(--white); /* Orange background to match the image */
  padding: 60px 0;
}

.ceo-content {
  background-color: var(
    --smart-orange
  ); /* Orange background to match the image */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto; /* Center horizontally */
  border-radius: 25px;
}

.ceo-image {
  flex: 0 0 auto; /* Prevent shrinking/growing */
}

.ceo-image img {
  width: 500px; /* Default width for CEO photo on desktop */
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border-radius: 25px 0 0 25px;
}

.ceo-text {
  flex: 1; /* Allow text to take available space */
  padding: 20px;
}

.ceo-title {
  font-size: 40px; /* Professional font size for title */
  color: var(--smart-blue); /* Blue text to match the image */
  font-weight: 600; /* Medium boldness for a professional look */
  margin-bottom: 20px;
}

.ceo-description {
  font-size: 20px; /* Professional font size for description */
  color: var(--white); /* White text for contrast */
  font-weight: 400; /* Normal weight for readability */
  line-height: 1.6; /* Improve readability */
  margin-bottom: 15px;
}

.ceo-name {
  font-size: 22px; /* Professional font size for name */
  color: var(--white); /* White text for contrast */
  font-weight: 600; /* Medium boldness for a professional look */
  margin-top: 10px;
}

@media (max-width: 1024px) {
  /* Tablet screens (1024px and below) */
  .ceo-message {
    padding: 40px 0; /* Reduce padding for tablets */
  }

  .ceo-image img {
    width: 450px; /* Slightly smaller photo on tablets */
    border-radius: 25px 0 0 25px;
  }

  .ceo-title {
    font-size: 28px; /* Slightly smaller title for tablets */
  }

  .ceo-description {
    font-size: 14px; /* Slightly smaller description on tablets */
  }

  .ceo-name {
    font-size: 16px; /* Slightly smaller name on tablets */
  }
}

@media (max-width: 768px) {
  /* Mobile screens (768px and below) */
  .ceo-message {
    padding: 30px 0; /* Further reduce padding for mobile */
  }

  .ceo-content {
    flex-direction: column; /* Stack image and text vertically on mobile */
    text-align: center; /* Center text on mobile */
  }

  .ceo-image {
    order: 1; /* Move image to the top on mobile */
  }

  .ceo-image img {
    width: auto; /* Smaller photo on mobile */
    border-radius: 25px 25px 0 0;
  }

  .ceo-text {
    padding: 15px; /* Reduce padding on mobile */
    order: 2; /* Move text below image on mobile */
  }

  .ceo-title {
    font-size: 24px; /* Smaller title for mobile */
  }

  .ceo-description {
    font-size: 14px; /* Smaller description on mobile */
  }

  .ceo-name {
    font-size: 16px; /* Smaller name on mobile */
  }
}

@media (max-width: 480px) {
  /* Very small screens (480px and below) */
  .ceo-image img {
    width: 350px; /* Even smaller photo on very small screens */
    border-radius: 25px 25px 0 0;
  }

  .ceo-title {
    font-size: 20px; /* Even smaller title for very small screens */
  }

  .ceo-description {
    font-size: 12px; /* Even smaller description on very small screens */
  }

  .ceo-name {
    font-size: 14px; /* Even smaller name on very small screens */
  }
}

/* Footer Section Styles */
.footer-section {
  background-color: var(
    --smart-blue
  ); /* Dark blue background to match the image */
  color: var(--white); /* White text for contrast */
}

.footer-section .back-to-top {
  font-size: 18px; /* Professional font size for "Back to Top" */
  color: var(--white); /* White text for contrast */
  text-decoration: none; /* Remove underline */
}

.footer-section .back-to-top i {
  margin-right: 8px; /* Professional spacing between arrow and text */
}

.footer-section .back-to-top:hover {
  color: var(--white); /* White on hover for consistency */
  text-decoration: underline; /* Underline on hover */
}

.footer-section .footer-nav {
  margin: 20px 0;
  display: flex; /* Use flex for 25% width links */
  justify-content: space-between; /* Evenly distribute links */
  max-width: 600px; /* Optional: Cap width for better layout */
  margin-left: auto;
  margin-right: auto;
}

.footer-section .footer-link {
  font-size: 16px; /* Professional font size for links */
  color: var(--white); /* White text for contrast */
  text-decoration: none; /* Remove underline */
  width: 25%; /* Set each link to 25% width */
  text-align: center; /* Center text within each link */
}

.footer-section .footer-link:hover {
  color: var(--white); /* White on hover for consistency */
  text-decoration: underline; /* Underline on hover */
}

.footer-section .social-icons {
  margin: 20px 0;
}

.footer-section .footer-social {
  font-size: 24px; /* Professional font size for social icons */
  color: var(--white); /* White icons for contrast */
  margin-right: 20px; /* Professional spacing between icons */
}

.footer-section .footer-social:hover {
  color: var(--white); /* White on hover for consistency */
  text-decoration: none; /* Remove underline on hover */
}

.footer-section .copyright {
  font-size: 14px; /* Professional font size for copyright */
  color: var(--white); /* White text for contrast */
  margin-top: 15px;
}

@media (max-width: 768px) {
  .footer-section {
    padding: 20px 0; /* Reduce padding on mobile */
  }

  .footer-section .back-to-top {
    font-size: 16px; /* Professional font size for mobile */
  }

  .footer-section .footer-nav {
    flex-direction: column; /* Stack links vertically on mobile */
    max-width: 100%; /* Full width on mobile */
  }

  .footer-section .footer-link {
    font-size: 14px; /* Professional font size for mobile */
    width: 100%; /* Full width on mobile */
    text-align: center; /* Center text on mobile */
    margin-bottom: 8px; /* Reduce space between links */
  }

  .footer-section .footer-social {
    font-size: 20px; /* Professional font size for mobile */
    margin-right: 10px; /* Reduce space between icons */
  }

  .footer-section .copyright {
    font-size: 12px; /* Professional font size for mobile */
  }
}

@media (max-width: 480px) {
  .footer-section .back-to-top {
    font-size: 14px; /* Professional font size for very small screens */
  }

  .footer-section .footer-link {
    font-size: 12px; /* Professional font size for very small screens */
    margin-bottom: 6px; /* Reduce space between links */
  }

  .footer-section .footer-social {
    font-size: 18px; /* Professional font size for very small screens */
    margin-right: 8px; /* Reduce space between icons */
  }

  .footer-section .copyright {
    font-size: 10px; /* Professional font size for very small screens */
  }
}
.promo-section {
  height: 400px;
}
