/* -------------------
   Fonts
------------------- */

/* IranNastaliq */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/iran-nastaliq-font@v1.0.0/dist/font-face.css');

/* Vazir */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v30.1.0/dist/font-face.css');

/* Yekan */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/yekan-font@v1.0.0/dist/font-face.css');



/* -------------------
   Root Variables
------------------- */
:root {
  --default-font: "IranSans", "Vazir", "Yekan", Tahoma, Arial, sans-serif;
  --heading-font: "IranSans", "Vazir", "Yekan", sans-serif;
  --nav-font: "IranSans", "Vazir", "Yekan", 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: #070d1a;
  /* Background color for the entire website, including individual sections */
  --default-color: #e4edf5;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #f2f8fe;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #10a3d7;
  /* 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: #131825;
  /* 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. */
}

/* 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: #e4edf5;
  /* The default color of the main navmenu links */
  --nav-hover-color: #10a3d7;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: rgba(22, 29, 44, 0.95);
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: rgba(23, 30, 47, 0.95);
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(215, 226, 235, 0.645);
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #111623;
  --surface-color: #161c2a;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body,
html {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font) !important;
  direction: rtl !important;
  text-align: right !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,

h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h3 {
  color: var(--accent-color)
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 36px;
  margin: 8px 5px;

}

.header .logo h1 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--heading-color);
}

.company-name {
  font-family: 'IranNastaliq', Tahoma, Arial, sans-serif;
  font-size: 28px;
  font-weight: normal;
  color: var(--heading-color);
  line-height: 1.6;
  margin-top: 10px;
}

.header nav#navmenu {
  flex: 1;
  display: flex;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: var(--nav-color);
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block !important;
  z-index: 998;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 20px 10px;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 15px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.navbar-nav a {
  font-family: var(--nav-font);
}

.mobile-nav-active .mobile-nav-toggle {
  right: 310px;
  font-size: 36px;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  direction: rtl;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}


.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;

  margin-left: 30px;
}

@media (max-width: 991px) {
  .footer .footer-links {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.designer-link {
  color: inherit;
  text-decoration: none;
}

.designer-link .sitename {
  color: #007bff;
  text-decoration: underline;
}

.designer-link:hover .sitename {
  color: #0056b3;
}


.sitename {
  color: #007bff;
  text-decoration: none;
  font-weight: 700;
}

.sitename:hover {
  color: #0056b3;
  text-decoration: underline;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}



.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 0;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.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;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 20px;
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .hero-content {
  padding: auto 5px;
}

@media (max-width: 991px) {
  .hero .hero-content {
    padding-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
}

.hero .hero-content .subtitle {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero .hero-content .subtitle span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding-bottom: 10px;
  position: relative;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.hero .hero-content .subtitle span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.small-icon {
  font-size: 0.8rem;
  vertical-align: middle;
  margin-right: 5px;
  display: inline-block;
  line-height: 1;
}

@media (max-width: 991px) {
  .hero .hero-content .subtitle span::after {
    right: 0;
    margin: 0 auto;
  }
}

.hero .hero-content .title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  color: var(--heading-color);
}

.hero .hero-content .title .highlight {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
}

.hero .hero-content .title .highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

@media (max-width: 1200px) {
  .hero .hero-content .title {
    font-size: 3.8rem;
  }
}

@media (max-width: 991px) {
  .hero .hero-content .title {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .hero .hero-content .title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero .hero-content .title {
    font-size: 2.4rem;
  }
}

.hero .hero-content .description {
  margin-bottom: 2.5rem;
}

.hero .hero-content .description p {
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero .hero-content .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-buttons .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.hero .hero-content .hero-buttons .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-buttons .primary-btn:hover i {
  transform: translateX(4px);
}

.hero .hero-content .hero-buttons .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  background-color: transparent;
  color: var(--default-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-buttons .secondary-btn:hover {
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
  transition: transform 0.5s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero .hero-visual .image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero .hero-visual .image-wrapper .main-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 5px auto;
}

.hero .hero-visual .image-wrapper .floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero .hero-visual .image-wrapper .floating-element i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-visual .image-wrapper .floating-element.top-left {
  top: -20px;
  left: -20px;
  animation-delay: 0.5s;
}

.hero .hero-visual .image-wrapper .floating-element.bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero .hero-visual .image-wrapper .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 140px;
}

.hero .hero-visual .image-wrapper .experience-badge .years {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-visual .image-wrapper .experience-badge .text {
  font-size: 0.85rem;
  color: var(--default-color);
  font-weight: 500;
}

.hero .hero-visual .client-counter {
  position: absolute;
  top: 30px;
  right: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
}

@media (max-width: 991px) {
  .hero .hero-visual .client-counter {
    right: 0;
  }
}

@media (max-width: 767px) {
  .hero .hero-visual .client-counter {
    right: 20px;
  }
}

.hero .hero-visual .client-counter .counter-number span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
}

.hero .hero-visual .client-counter .counter-text span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-image-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.about .about-image-wrapper img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 560px;
}

.about .about-image-wrapper .mission-card {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  background-color: var(--accent-color);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-image-wrapper .mission-card .mission-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-image-wrapper .mission-card .mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about .about-image-wrapper .mission-card .mission-content h4 {
  font-size: 1.25rem;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .about-image-wrapper .mission-card .mission-content p {
  font-size: 0.95rem;
  color: var(--contrast-color);
  margin-bottom: 0;
}

.about .about-content .tag-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about .about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.value-text .phone {
  display: block;
  margin-top: 11px;
  font-weight: 500;
}

.phone {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 1rem;
}

.phone i {
  font-size: 14px;
  color: var(--accent-color);
}

.phone .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.phone .icon i {
  color: var(--contrast-color);
  font-size: 12px;
}


.value-text .name {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 6px;
  gap: 8px;
}

.value-text .name .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.value-text .name .value-icon i {
  color: var(--contrast-color);
  font-size: 14px;
}

@media (max-width: 991px) {
  .about .about-content h2 {
    font-size: 1.75rem;
  }
}

.about .about-content .about-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about .about-content .about-info p:last-child {
  margin-bottom: 50px;
  text-align: justify;
}

.about .about-content .values-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

.about .about-content .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}

.about .about-content .values-list .value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 5%);
  padding: 0.75rem 1.25rem;
  border-radius: 18px;
  flex: 1 1 60%;
  flex-direction: row;
  transition: all 0.3s ease;
}

.about .about-content .values-list .value-item:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about .about-content .values-list .value-item .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about .about-content .values-list .value-item .value-icon i {
  color: var(--contrast-color);
  font-size: 14px;
}

.about .about-content .values-list .value-item .value-text {
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .about .about-content {
    margin-top: 3rem;
  }
}



/*--------------------------------------------------------------
# Features Alt Section
--------------------------------------------------------------*/
.features-alt {
  padding-top: 30px;
  padding-bottom: 60px;
}

.features-alt .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.features-alt .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.features-alt .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.features-alt .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.features-alt .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.features-alt .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.features-alt .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.features-alt .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.features-alt .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.features-alt .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-alt .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.features-alt .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.features-alt .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features-alt .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features-alt .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.features-alt .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 23px;
}

.features-alt .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.features-alt .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.features-alt .tab-content .content-box p.highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.features-alt .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  white-space: normal;
}

.features-alt .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.features-alt .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.features-alt .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.features-alt .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 8px;
  display: inline-block;
}

.features-alt .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.features-alt .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.features-alt .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-alt .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
  padding: 86px 23px;
  width: 600px;
  height: 640px;
}

.features-alt .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.features-alt .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.features-alt .tab-pane {
  transition: all 0.4s ease;
}

.features-alt .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.features-alt .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .features-alt .nav-tabs {
    margin-bottom: 30px;
  }

  .features-alt .nav-tabs .nav-link {
    padding: 15px;
  }

  .features-alt .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .features-alt .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .features-alt .tab-content .content-box {
    padding: 30px;
  }

  .features-alt .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .features-alt .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  @media (max-width: 767px) {
    .features-alt .tab-content .content-box .features-list li span {
      display: block;
      word-wrap: break-word;
      word-break: break-word;
    }
  }

  .features-alt .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .features-alt .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .features-alt .tab-content .content-box {
    padding: 25px;
  }

  .features-alt .tab-content .content-box h3 {
    font-size: 22px;
  }

  .features-alt .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
  width: 100%;
  padding: 0 15px;
  direction: rtl !important;
  text-align: right !important;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  direction: rtl;
  text-align: right;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cards*/
.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  direction: rtl;
  text-align: right;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

/* Social Mesia*/
.contact .social-links-panel {
  margin-top: 25px;
  direction: rtl;
  text-align: right;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

/* Form and Map*/
.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact .map-container {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  direction: rtl;
  text-align: right;
}

.contact .map-container iframe {
  width: 100% !important;
  height: 100% !important;
}

.contact .form-container {
  direction: rtl !important;
  text-align: right !important;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container .form-floating>label {
  right: 0 !important;
  left: auto !important;
  text-align: right !important;
  direction: rtl !important;
}

.contact .form-container .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Responsive*/
@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 25px 20px;
  }

  .contact .form-container {
    padding: 20px;
  }

  .contact .map-container {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }

  .contact .form-container h3 {
    font-size: 20px;
  }

  .contact .form-container p {
    font-size: 14px;
  }
}