/* Fonts */
:root {
    --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
  }
  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #191919; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #cc1616; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --ipazar-color: #d01919;
    --accent-color-hover: #971212;
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: #ffffff;  /* The default color of the main navmenu links */
    --nav-hover-color: #cc1616; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #cc1616; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }

  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
  }
  
  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 66px;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  
  .section-title {
    text-align: center;
    padding: 30px 10px;
    margin-bottom: 30px;
    position: relative;
  }
  

  .section-title2 {
    text-align: center;
    padding: 30px 10px;
    margin-bottom: 30px;
    position: relative;
    background-image: url("../img/sky2.jpeg");
    background-size: cover; /* This makes sure the image covers the entire section */
    background-position: center; /* This centers the image */
    background-repeat: no-repeat; /* This prevents the image from repeating */
    height: 600px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
  }
  
  .section-title span {
    position: absolute;
    top: 4px;
    color: color-mix(in srgb, var(--heading-color), transparent 95%);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 1;
  }
  
  .section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }

  .aboutus-cont {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    color: white;
    min-width: 250px;
}

.container2 {
  text-align: left;
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-item {
  background-color: var(--accent-color);
  max-width: 400px;
  min-width: 400px;
  min-height: 150px;
  position: relative;
  border-radius: 20px;
  color: white;
}

.icon-container {
  position: absolute;
  top: 0px;
  right: 0px;
  align-items: right;
  text-align: right;
  margin: 20px;
}

.icon {
  font-size: 40px;
  color: white;
}

.text-container {
  position: absolute;
  top: 0px;
  left: 0px;
  align-items: left;
  text-align: left;
  margin: 20px;
}

.text-container2 {
  position: absolute;
  top: 50px;
  left: 0px;
  align-items: left;
  text-align: left;
  margin: 20px;
  margin-right: 80px;
}

.custom-h3 {
  font-size: 30px !important;
  color: white !important;
}

.custom-h4 {
  font-size: 15px !important;
  color: white !important;
  font-weight: 400 !important;
}

.img-sky {
  width: 416px;
  border-radius: 0 20px 20px 0;
}

.content {
  display: flex;
  justify-content: flex-end; /* Aligns the content to the right */
}

.quote2 {
  border-radius: 20px 0 0 20px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
  max-width: 416px;
}

.quote {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.quote-text {
  flex: 2;
  padding-left: 20px;
  border-left: 5px solid var(--accent-color);
  padding-left: 20px;
  font-style: italic;
}

.ceo-img {
  width: 50px;
  height: auto;
  border-radius: 50px;
}

@media (max-width: 992px) {
  .quote2 {
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    width: 100%;
    margin-top: 0px;
  }
  .content2 {
    display: none;
  }
  .content {
    justify-content: flex-start; /* Aligns the content back to the left on small screens */
  }
  .section2 {
    scroll-margin-top: 10px !important;
    padding-top: 0px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title span {
    font-size: 38px;
  }

  .company-item {
    margin-left: 30px;
    margin-right: 30px;
    min-width: 350px;
  }
  .container2 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
