/* Global Styles */
@font-face {
  font-family: "Rabar";
  src: url("assets/font/Rabar_Regular.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "SarchiaKirkuk";
  src: url("assets/font/54_Sarchia_Kirkuk.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

/* Include Project Styles */
@import url("project-styles.css");

:root {
  --primary-color: #ffd100;
  --primary-rgb: 255, 209, 0;
  --secondary-color: #333;
  --text-color: #333;
  --light-color: #fff;
  --transition: all 0.3s ease-in-out;
}

/* RTL Global Styles */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] .menu {
  padding-right: 0;
  flex-direction: row-reverse;
}

html[dir="rtl"] header .container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .navbar {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

html[dir="rtl"] .logo {
  margin-left: 0;
  order: 2;
}

html[dir="rtl"] .nav-links {
  order: 1;
}

html[dir="rtl"] .menu li {
  margin-left: 0;
  margin-right: 30px;
}

html[dir="rtl"] .menu a.active::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .card-overlay {
  left: auto;
  right: 0;
}

html[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}

html[dir="rtl"] .contact-card-header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-content {
  flex-direction: column;
}

/* RTL Form Styles */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  text-align: right;
}

html[dir="rtl"] .contact-container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .contact-form h3 {
  text-align: right;
}

html[dir="rtl"] .contact-card {
  text-align: right;
}

html[dir="rtl"] .contact-icon {
  margin-right: 0;
  margin-left: 15px;
}

html[dir="rtl"] .values li {
  display: flex;
  flex-direction: row-reverse;
}

html[dir="rtl"] .values li i {
  margin-right: 0;
  margin-left: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* RTL Specific Styles */
html[dir="rtl"] .menu li {
  margin-left: 0;
  margin-right: 25px;
}

html[dir="rtl"] .section-title::after {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

/* Footer RTL column headers updated */

/* RTL footer styles updated */

html[dir="rtl"] .card-category::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .social-icons a {
  margin-right: 8px;
  margin-left: 8px;
}

html[dir="rtl"] .btn-text i {
  margin-left: 0;
  margin-right: 5px;
  transform: rotate(180deg);
}

html[dir="rtl"] .btn-text:hover i {
  transform: translateX(-5px) rotate(180deg);
}

html[dir="rtl"] .hamburger {
  margin-left: 100px;
  margin-right: 100px;
  left: auto;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] input::placeholder,
html[dir="rtl"] textarea::placeholder {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .service-icon-wrapper {
  text-align: center;
}

html[dir="rtl"] .btn-text i {
  margin-left: 0;
  margin-right: 5px;
  transform: rotate(180deg);
}

html[dir="rtl"] .service-icon-wrapper:hover .btn-text i {
  transform: translateX(-5px) rotate(180deg);
}

body {
  font-family: "Rabar", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

header {
  font-weight: bold;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border: 2px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color);
}

/* Hero section button styling */
.hero .cta-button .btn {
  background-color: var(--secondary-color);
  color: var(--light-color);
  border: 2px solid var(--secondary-color);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: var(--secondary-color);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition);
  padding: 5px 0;
}

header.scrolled {
  padding: 2px 0;
  background: #dfb425;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

header.scrolled .logo img {
  max-height: 200px;
}

header .container {
  display: flex;
  align-items: center;
  /* Increased horizontal padding and constrained width for more inward spacing */
  padding: 0 60px;
  max-width: 1700px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  padding: 10px;
  border-radius: 8px;
  position: relative;
  z-index: 1001;
}

.logo a {
  display: block;
}

.logo img {
  max-height: 200px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  color: #fff;
}

.menu {
  display: flex;
  background: transparent;
  padding: 0;
  margin: 0;
}

.menu li {
  position: relative;
  margin-left: 30px;
  list-style: none;
}

.menu a {
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 0;
  display: inline-block;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1rem;
  position: relative;
}

.menu a:hover {
  color: var(--light-color);
}

.menu a.active {
  color: var(--light-color);
}

.menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--light-color);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
  text-align: right;
  padding: 5px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 5px;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-color);
  font-size: 0.95rem;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1002;
  margin: 0 20px;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  /* background-color: var(--primary-color); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./assets/heroooo.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 20px 1rem 0 1rem;
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 0px 0.5rem 0 0.5rem;
    min-height: 60vh;
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 209, 0, 0.7); */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  font-family: "Rabar", sans-serif;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.animate-text .line {
  display: block;
  background-color: rgb(255, 255, 255, 0.8);
  color: var(--primary-black);
  padding: 12px 16px;

  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1s ease, opacity 0.8s ease;
}

.animate-text .line:nth-child(1) {
  transition-delay: 0.2s;
}

.animate-text .line:nth-child(2) {
  transition-delay: 0.4s;
}

.animate-text .line:nth-child(3) {
  transition-delay: 0.6s;
}

.loaded .animate-text .line {
  opacity: 1;
  transform: translateY(0);
}

.animate-button {
  opacity: 0;

  transform: translateY(30px);
  transition: transform 0.8s ease, opacity 0.6s ease;
  transition-delay: 0.8s;
}

.loaded .animate-button {
  opacity: 1;
  transform: translateY(0);
}

/* Activities Section */
.activities {
  padding: 100px 0;
}

.cards {
  margin-inline: 200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1200px) {
  .cards {
    margin-inline: 100px;
  }
}

@media screen and (max-width: 992px) {
  .cards {
    margin-inline: 50px;
  }
}

@media screen and (max-width: 768px) {
  .cards {
    margin-inline: 20px;
  }
}

.card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.card a {
  text-decoration: none;
  color: var(--text-color);
  display: block;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.card-logo {
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-logo img {
  max-width: 25px;
  max-height: 25px;
}

.card-content {
  padding: 20px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.card-category {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.card-category::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.card:hover .card-category::after {
  width: 100%;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.see-all-button {
  text-align: center;
  margin-top: 50px;
}

/* Footer Styles */
footer {
  background-color: #f9faff;
  color: var(--light-color);
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  color: #333;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  max-width: 120px;
  margin-bottom: 10px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 8px;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffd100;
  border-radius: 50%;
  margin: 0 8px;
  transition: var(--transition);
  color: #333;
}

.social-icons a:hover {
  background-color: #fff;
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.copyright-icon {
  font-size: 1rem;
  margin-right: 5px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-column {
    margin-right: 40px;
  }
}

@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
    margin-right: 200px;
  }

  .navbar {
    justify-content: space-between;
  }

  header .container {
    /* Slightly reduced padding on smaller screens for space efficiency */
    padding: 0 25px;
  }

  html[dir="rtl"] .hamburger {
    margin-left: 20px;
    margin-right: 0;
  }

  html[dir="rtl"] .logo {
    margin-left: 0;
    margin-right: 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 100px 30px;
    transition: 0.4s ease;
    z-index: 998;
  }

  html[dir="rtl"] .nav-links {
    right: auto;
    left: -100%;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  html[dir="rtl"] .nav-links.active {
    right: auto;
    left: 0;
  }

  .menu {
    flex-direction: column;
    padding: 0;
  }

  html[dir="rtl"] .menu {
    flex-direction: column;
  }

  .menu li {
    margin: 15px 0;
  }

  html[dir="rtl"] .menu li {
    margin: 15px 0;
  }

  .menu a.active::after {
    bottom: -2px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f9f9f9;
    margin: 10px 0;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media screen and (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cards {
    grid-template-columns: 1fr;
    margin-inline: 10px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-column {
    margin-right: 0;
    width: 100%;
  }
}

/* Animation for Cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.aos-animate[data-aos="fade-up"] {
  opacity: 1;
  transform: translateY(0);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, #f9f9f9 49%, transparent 50%);
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin: 40px 0;
  overflow-x: auto;
  padding: 20px 10px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.services-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.service-icon-wrapper {
  flex: 0 0 auto;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.service-icon-wrapper:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffd100;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%);
  top: 0;
  left: 0;
}

.service-icon-wrapper:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-icon i {
  font-size: 32px;
  transition: all 0.3s ease;
}

.service-icon-wrapper:hover .service-icon i {
  transform: scale(1.1);
}

.service-icon-wrapper h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}

@media screen and (max-width: 992px) {
  .services-container {
    justify-content: flex-start;
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .service-icon-wrapper {
    width: 110px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon i {
    font-size: 28px;
  }

  .service-icon-wrapper h3 {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .service-icon-wrapper {
    width: 95px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 24px;
  }
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, transparent 49%, #f9f9f9 50%);
}

.partners-slider {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 40px;
  animation: slidePartners 30s linear infinite;
  width: max-content;
}

@keyframes slidePartners {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% / 2));
  }
}

html[dir="rtl"] .partners-track {
  animation-name: slidePartnersRtl;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes slidePartnersRtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(100% / 2));
  }
}

.partner-item {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  padding: 15px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  opacity: 1;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.partner-item img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: grayscale(0);
}

.partner-item:hover img {
  filter: grayscale(100%);
}

@media screen and (max-width: 992px) {
  .partner-item {
    width: 160px;
    height: 110px;
  }

  .partners-track {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .partner-item {
    width: 140px;
    height: 100px;
  }

  .partners-track {
    gap: 25px;
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
  padding-right: 0;
}

.image-container {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

/* Removing decorative elements for About page */

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.experience {
  position: absolute;
  bottom: -30px;
  right: 0;
  background-color: #ffd100;
  color: #333;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.experience .number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.experience .text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.about-text {
  padding-left: 20px;
  text-align: right;
}

.section-title.left-aligned {
  text-align: left;
  margin-bottom: 20px;
}

.section-title.left-aligned::after {
  left: 0;
  transform: none;
}

.section-title.right-aligned {
  text-align: right;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 2.2rem;
  font-family: "Rabar", sans-serif;
}

.section-title.right-aligned::after {
  right: 0;
  left: auto;
  transform: none;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-description {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #555;
  direction: rtl;
}

.about-description p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-family: "SarchiaKirkuk", sans-serif;
}

.about-features {
  margin-bottom: 30px;
}

.feature {
  display: flex;
  margin-bottom: 20px;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 209, 0, 0.2);
  color: #ffd100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #333;
}

.feature-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.stat {
  text-align: center;
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  padding: 120px 0 60px;
  position: relative;
  text-align: center;
  background-image: linear-gradient(rgba(255, 209, 0, 0.9),
      rgba(255, 209, 0, 0.8)),
    url("https://placeholder.pics/svg/1400x300/DEDEDE/555555/banner-background");
  background-size: cover;
  background-position: center;
}

.about-us-banner {
  background-color: #333;
  background-image: url("./assets/aboutus.png");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  position: relative;
}

.about-us-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.about-us-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-us-banner h1 {
  color: white;
  text-align: right;
  font-size: 3.5rem;
  margin-right: 50px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
}

.breadcrumb a {
  color: var(--secondary-color);
  opacity: 0.8;
  transition: var(--transition);
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb .separator {
  font-size: 1.2rem;
  opacity: 0.6;
}

.breadcrumb .current {
  font-weight: 600;
}

/* Mission, Vision, Values Section */
.mission-vision {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.mission-vision-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission,
.vision,
.values {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.mission:hover,
.vision:hover,
.values:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon,
.vision-icon,
.values-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 209, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-icon i,
.vision-icon i,
.values-icon i {
  font-size: 35px;
  color: #ffd100;
}

.mission h3,
.vision h3,
.values h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.mission p,
.vision p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  text-align: center;
}

.values ul {
  padding-left: 20px;
}

.values li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: center;
}

.values li i {
  color: #ffd100;
  margin-right: 10px;
}

/* Team Section */
.team {
  padding: 80px 0;
  background-color: white;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateY(100%);
  transition: var(--transition);
}

.team-member:hover .member-social {
  transform: translateY(0);
}

.member-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: var(--transition);
}

.member-social a:hover {
  background-color: #ffd100;
  color: #333;
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #333;
}

.member-info .position {
  font-size: 0.95rem;
  color: #ffd100;
  font-weight: 600;
  margin-bottom: 10px;
}

.member-info .description {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
  .about-us-banner {
    height: 250px;
  }

  .about-us-banner h1 {
    font-size: 2.8rem;
    margin-right: 30px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: 1;
    margin-bottom: 30px;
  }

  .about-text {
    order: 2;
  }
}

@media (max-width: 767px) {
  .about-us-banner {
    height: 200px;
  }

  .about-us-banner h1 {
    font-size: 2.3rem;
    margin-right: 20px;
  }

  .section-title.right-aligned {
    font-size: 1.8rem;
  }

  .about-description p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 992px) {
  .mission-vision-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .values {
    grid-column: span 2;
  }

  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .page-banner h1 {
    font-size: 2.3rem;
  }

  .mission-vision-content {
    grid-template-columns: 1fr;
  }

  .values {
    grid-column: span 1;
  }

  .mission,
  .vision,
  .values {
    padding: 25px;
  }

  .team-members {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.contact-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255, 209, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card .icon i {
  font-size: 30px;
  color: #ffd100;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* Services Page Styles */
.services-overview {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 209, 0, 0.05);
  z-index: -1;
  transition: var(--transition);
}

.service-item:hover::before {
  height: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 209, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.service-item:hover .service-icon {
  background-color: rgba(255, 209, 0, 0.4);
  transform: scale(1.1);
}

.service-icon i {
  font-size: 35px;
  color: #ffd100;
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}

.service-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.btn-text {
  display: inline-block;
  color: #ffd100;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-text i {
  margin-left: 5px;
  transition: var(--transition);
}

.btn-text:hover {
  color: #333;
}

.btn-text:hover i {
  transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  position: relative;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 209, 0, 0.2);
  line-height: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255, 209, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.step-icon i {
  font-size: 30px;
  color: #ffd100;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #ffd100 #f0f0f0;
}

.testimonial-slider::-webkit-scrollbar {
  height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
  background-color: #ffd100;
  border-radius: 10px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-rating {
  margin-bottom: 20px;
  color: #ffd100;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.client-details p {
  font-size: 0.9rem;
  color: #666;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 209, 0, 0.9), rgba(255, 209, 0, 0.8)),
    url("https://placeholder.pics/svg/1400x500/DEDEDE/555555/cta-background");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: white;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-icon i {
  font-size: 12px;
  color: #333;
  transition: var(--transition);
}

.faq-answer {
  background-color: #f9f9f9;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.faq-item.active .toggle-icon {
  background-color: #ffd100;
}

.faq-item.active .toggle-icon i {
  transform: rotate(45deg);
}

/* Responsive styles for services page */
@media screen and (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: white;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-icon i {
  font-size: 12px;
  color: #333;
  transition: var(--transition);
}

.faq-answer {
  background-color: #f9f9f9;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.faq-item.active .toggle-icon {
  background-color: #ffd100;
}

.faq-item.active .toggle-icon i {
  transform: rotate(45deg);
}

/* Responsive styles for contact page */
@media screen and (max-width: 992px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  position: relative;
}

.stat-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: #ffd100;
}

.stat-text {
  font-size: 0.9rem;
  color: #666;
}

@media screen and (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    padding-right: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-text {
    padding-left: 0;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat {
    flex: 1 0 calc(33.333% - 20px);
    min-width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .about {
    padding: 70px 0;
  }

  .image-container::before,
  .image-container::after {
    width: 70px;
    height: 70px;
  }

  .experience {
    padding: 15px;
  }

  .experience .number {
    font-size: 2.5rem;
  }

  .feature {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 576px) {
  .experience {
    bottom: -20px;
    right: 20px;
    padding: 10px;
  }

  .experience .number {
    font-size: 2rem;
  }

  .experience .text {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .partners-track {
    gap: 20px;
  }

  .partner-item {
    width: 120px;
    height: 90px;
  }
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, #fff 49%, #f9f9f9 50%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffd100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  color: #333;
  font-size: 18px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.contact-card p {
  color: #666;
  margin: 5px 0;
}

.contact-form {
  grid-column: span 2;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-top: 10px;
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd100;
  box-shadow: 0 0 0 2px rgba(255, 209, 0, 0.2);
}

.contact-map {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-height: 500px;
}

@media screen and (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-map {
    order: -1;
    margin-bottom: 20px;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-column: span 1;
  }

  .contact-map {
    height: 350px;
  }
}