/* 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;
  --red-gradient: linear-gradient(to bottom right,
      #FF0000 0%,
      #F50000 9%,
      #EB0000 18%,
      #E10000 27%,
      #D70000 36%,
      #CD0000 45%,
      #C30000 54%,
      #B90000 63%,
      #AF0000 72%,
      #A50000 81%,
      #9B0000 90%,
      #910000 100%);
}

/* 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: 0px 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/about/sky2.webp");
  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;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  text-transform: none;
  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;
}

.background-item {
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background: rgb(204, 22, 22);
  background: linear-gradient(180deg, rgba(204, 22, 22, 1) 0%, rgba(151, 18, 18, 1) 73%, rgba(0, 0, 0, 1) 100%);
}

.header-h1 {
  color: var(--heading-color);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #242424;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.topbar {
  background-color: var(--topbar-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: transform 0.3s ease;
  overflow: hidden;
  /* Ensure content does not overflow when height is reduced */
  position: fixed;
  width: 100%;
}

.topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
  text-decoration: none;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .ms-4 {
    margin-left: 10px !important;
  }

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 10px !important;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline !important;
}

.topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
  text-decoration: none;
}

.topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  background-color: var(--header-color);
  min-height: 50px;
  z-index: 999;
  position: fixed;
  width: 100%;
  top: 40px;
  transition: transform 0.3s ease;
}

.header .logo {
  line-height: 1;
}

.logo-img {
  max-height: 45px;
  margin-right: 8px;
  border-radius: 8px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
    max-width: 200px;
}


.navmenu2 {
  position: absolute;
  top: 20px;
  right: 200px;
}

.download-button2 {
  color: var(--default-color);
  background: var(--contrast-color);
  margin-left: 10px;
  border-radius: 8px;
  font-size: 17px;
  height: 45px;
  letter-spacing: 1px;
  padding: 12px 10px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-button2:hover {
  text-decoration: underline;
}

.download-button2 i {
  line-height: 0;
  transition: 0.3s;
  margin: 0px !important;
  margin-right: 5px !important;
  color: var(--accent-color);
  font-size: 20px;

}

.container-footer {
  display: none;
}

.signup-form-container {
  margin-top: 50px;
  margin-right: 400px;
}

.signup-form-container .a:hover {
  text-decoration: underline !important;
}


.login-button2 {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-size: 17px;
  height: 45px;
  color: var(--nav-color);
  letter-spacing: 1px;
  padding: 12px 20px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
}

.login-button2 i {
  font-size: 20px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.login-button2:hover {
  /* background: color-mix(in srgb, var(--accent-color), transparent 20%);*/
  padding-right: 15px;
}

.login-button2:hover i {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .signup-form-container {
    margin-top: 0px;
    margin-right: 0px;
    box-shadow: none;
    padding: 10px;
  }

  .navmenu2 {
    right: 20px;
  }

  .login-button2,
  .download-button2 {
    font-size: 17px;
    padding: 8px;
  }

  .login-button2 {
    border: 2px solid white;
  }

  .login-button2 i,
  .download-button2 i {
    font-size: 16px;
  }

  .login-button2:hover {
    text-decoration: underline;
    padding: 8px;
  }

  .login-button2:hover i {
    margin-left: 5px;
  }

  .background-item {
    display: none;
  }

}

.signup-form label {
  display: block;
  margin: 10px 0 5px;
  font-size: 14px;
  color: #555555;
  font-weight: 600;
}

.signup-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
}

.form-group {
  margin-bottom: 0px;
  margin-top: 0px;
}


a.create-account {
  color: var(--accent-color);
  text-decoration: none;
}

a.create-account:hover {
  text-decoration: underline !important;
}


.signup-form button {
  background: var(--red-gradient);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.pay-box {
  width: 1000px;
  height: 600px;
  border: 2px solid gray;
  margin: 20px auto;
  border-radius: 8px;


}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 100%;
  height: 100%;
}

.grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid #000;
}


.login-button3 {
  background: var(--red-gradient);
  border-radius: 8px;
  font-size: 17px;
  height: 45px;
  color: var(--nav-color);
  letter-spacing: 1px;
  padding: 12px 20px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
}

.login-button4 {
  background: var(--contrast-color);
  color: var(--my-color);
  border-radius: 8px;
  font-size: 17px;
  height: 45px;
  letter-spacing: 1px;
  padding: 12px 20px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
  margin-top: 1rem;
  border: 2px solid var(--my-color);
}


