@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Kufi Arabic", sans-serif;
  direction: rtl;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #d7c9b2;
  margin: auto;
  width: max-content;
  margin-bottom: 1rem;
}
.section-title h1 {
  font-size: 32px;
  color: #032642;
}
.section-title h1 span {
  color: #b09e85;
}
.section-title img {
  width: 45px;
}

.top-header {
  background-color: #032642;
  padding: 0.5rem 0;
  height: 50px;
}
.top-header .container .header-left {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row-reverse;
  gap: 2rem;
}
.top-header .container .header-left span {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  color: #f6ead6;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.5rem;
}
.top-header .container .header-left span img {
  width: 1.8rem;
}

.main-header {
  background-color: #f6ead6;
  border-bottom: 3px solid #b09e85;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.main-header .container .logo {
  position: absolute;
  right: 0;
  bottom: -3px;
  height: calc(100% + 53px);
  width: 200px;
  padding: 1rem;
  background-color: #032642;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header .container .logo:after {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 50px;
  background-color: #f6ead6;
  z-index: 2;
}
.main-header .container .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-header .container .group-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 200px;
}
.main-header .container .group-right .main-nav ul {
  display: flex;
  list-style: none;
}
.main-header .container .group-right .main-nav ul a {
  display: block;
  text-decoration: none;
  color: #032642;
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s;
  padding: 0 1rem;
  border-left: 1px solid #d7c9b2;
}
.main-header .container .social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main-header .container .social-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.main-header .container .social-links a img {
  width: 1.8rem;
  height: 1.8rem;
}
.main-header .container .mobile-menu-btn {
  background: transparent;
  border: none;
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.mobile-menu-btn .bar {
  width: 100%;
  height: 3px;
  background-color: #032642;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-btn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(3, 38, 66, 0.95);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay .close-btn {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}
.mobile-menu-overlay .mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.mobile-menu-overlay .mobile-menu-content .mobile-nav {
  margin-bottom: 3rem;
}
.mobile-menu-overlay .mobile-menu-content .mobile-nav ul {
  list-style: none;
  text-align: center;
}
.mobile-menu-overlay .mobile-menu-content .mobile-nav ul li {
  margin-bottom: 1.5rem;
}
.mobile-menu-overlay .mobile-menu-content .mobile-nav ul li a {
  color: #f6ead6;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.mobile-menu-overlay .mobile-menu-content .mobile-nav ul li a:hover {
  color: #b09e85;
}
.mobile-menu-overlay .mobile-menu-content .mobile-social-links {
  display: flex;
  gap: 2rem;
}
.mobile-menu-overlay .mobile-menu-content .mobile-social-links a img {
  width: 2.5rem;
  height: 2.5rem;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.mobile-menu-overlay .mobile-menu-content .mobile-social-links a img:hover {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(25deg);
}

.hero {
  position: relative;
  border-bottom: 6px solid #032642;
}
.hero .heroSlider {
  width: 100%;
  height: 740px;
}
.hero .heroSlider .swiper-slide {
  position: relative;
}
.hero .heroSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .heroSlider .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .pagination-wrapper {
  display: flex;
  gap: 1rem;
  background-color: rgba(3, 38, 66, 0.85);
  width: max-content;
  padding: 0 1rem;
  border-radius: 25px;
}
.hero .swiper-pagination {
  width: max-content;
  position: static;
  display: flex;
  align-items: center;
}
.hero .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #f6ead6;
  opacity: 0.8;
}
.hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  opacity: 1;
}
.hero .slides-text {
  position: relative;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}
.hero .slides-text .slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  z-index: 10;
}
.hero .slides-text .slide-text.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
  pointer-events: auto;
}
.hero .slides-text .slide-text.slide-out-up {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-20px);
}
.hero .slides-text .slide-text.slide-out-down {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(20px);
}
.hero .slides-text .slide-text.slide-in-up {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(20px);
}
.hero .slides-text .slide-text.slide-in-down {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-20px);
}
.hero .container {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: end;
}

.news {
  padding: 3rem 0;
}
.news .container .section-description {
  font-size: 16px;
  text-align: center;
  color: #032642;
  opacity: 0.8;
}
.news .container .news-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.news .container .news-wrapper .news-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.news .container .news-wrapper .news-item:nth-child(3) {
  grid-column: span 2;
}
.news .container .news-wrapper .news-item .img {
  position: relative;
  width: 100%;
  height: 300px;
}
.news .container .news-wrapper .news-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .container .news-wrapper .news-item .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #032642;
  opacity: 0.2;
}
.news .container .news-wrapper .news-item .content {
  background-color: #f6ead6;
  padding: 0.5rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.news .container .news-wrapper .news-item .content h1 {
  font-size: 18px;
  color: #032642;
  margin-bottom: 0.5rem;
}
.news .container .news-wrapper .news-item .content p {
  font-size: 16px;
  color: #b09e85;
}
.news .container .news-wrapper .news-item .content a {
  color: #032642;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: end;
  text-decoration: none;
}
.news .container .news-wrapper .news-item .content a img {
  width: 1.8rem;
  height: 1.8rem;
}

.blog {
  margin-bottom: 4rem;
}
.blog .blog-wrapper {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.blog .blog-wrapper .blog-item .img {
  width: 100%;
  height: 300px;
}
.blog .blog-wrapper .blog-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .blog-wrapper .blog-item .text {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.blog .blog-wrapper .blog-item .text .date {
  font-size: 16px;
  color: #b09e85;
  margin-bottom: 0.5rem;
  font-weight: 700;
  padding-right: 40px;
  position: relative;
}
.blog .blog-wrapper .blog-item .text .date::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 4px;
  background-color: #b09e85;
}
.blog .blog-wrapper .blog-item .text p {
  font-size: 18px;
  color: #032642;
  margin-bottom: 0.5rem;
}

.footer {
  background: rgba(246, 234, 214, 0.2901960784);
  border-top: 1px solid #b09e85;
}
.footer .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer .container .footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 180px;
  gap: 2rem;
}
.footer .container .company-description {
  font-size: 13px;
  margin-top: 1rem;
}
.footer .container .office {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.footer .container .office p {
  font-size: 15px;
}
.footer .container .contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.footer .container .contact-section .contact-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.footer .container .contact-section .contact-number {
  font-size: 34px;
  font-weight: 700;
  line-height: 25px;
  color: #032642;
}
.footer .container .contact-section .contact-title {
  color: #032642;
}
.footer .footer-bottom {
  background-color: #f6ead6;
  border-top: 1px solid #d7c9b2;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.page-header {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid #032642;
}
.page-header > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 38, 66, 0.7);
}
.page-header h1 {
  z-index: 2;
  color: #fff;
  font-size: 32px;
}
.page-header .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
}
.page-header .links img {
  width: 20px;
  height: 20px;
}
.page-header .links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.about-section .container .thumbnail {
  width: 100%;
  height: 100%;
  border-left: 8px solid #b09e85;
}
.about-section .container .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section .container .content {
  padding: 4rem 0;
  margin-right: -8px;
}
.about-section .container .content h1 {
  font-size: 28px;
  color: #032642;
  margin-bottom: 1.5rem;
  line-height: 38px;
  border-right: 8px solid #032642;
  padding-right: 1rem;
}
.about-section .container .content > p {
  font-size: 16px;
  padding-right: 24px;
  margin-bottom: 3rem;
  color: #51616e;
}
.about-section .container .content .our-features p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.about-section .container .content .our-features p span:first-child {
  display: block;
  background-color: #f6ead6;
  font-size: 34px;
  color: #032642;
  font-weight: 600;
  min-width: 120px;
  text-align: center;
}
.about-section .container .content .our-features p span:last-child {
  color: #b5ada0;
  font-size: 14px;
  font-weight: 600;
}

.contact {
  padding: 3rem 0;
}
.contact .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.contact .container .form-wrapper .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.contact .container .form-wrapper .head h1 {
  font-size: 36px;
  color: #b09e85;
}
.contact .container .form-wrapper .head h1 span {
  color: #032642;
}
.contact .container .form-wrapper .head p {
  font-size: 24px;
  line-height: 35px;
  color: #032642;
  opacity: 0.8;
}
.contact .container .form-wrapper .head img {
  min-width: 120px;
  object-fit: contain;
}
.contact .container .form-wrapper form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact .container .form-wrapper form input, .contact .container .form-wrapper form select, .contact .container .form-wrapper form textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  background-color: #f8f9fa;
  color: #222;
  padding: 0.8rem;
  font-family: "Noto Kufi Arabic", sans-serif;
  text-align: right;
}
.contact .container .form-wrapper form input:nth-child(5), .contact .container .form-wrapper form input:nth-child(6), .contact .container .form-wrapper form select:nth-child(5), .contact .container .form-wrapper form select:nth-child(6), .contact .container .form-wrapper form textarea:nth-child(5), .contact .container .form-wrapper form textarea:nth-child(6) {
  grid-column: span 2;
}
.contact .container .form-wrapper form button {
  padding: 0.8rem;
  background-color: #032642;
  color: #fff;
  max-width: 200px;
  font-size: 18px;
  border: none;
  border-radius: 0;
}
.contact .container .addresses {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 3.3rem;
  margin-right: 3rem;
}
.contact .container .addresses .addresses-wrapper {
  padding-right: 2rem;
  height: max-content;
  border-right: 8px solid #b09e85;
}
.contact .container .addresses .address {
  margin-bottom: 1rem;
}
.contact .container .addresses .address h1 {
  font-size: 20px;
  color: #032642;
}
.contact .container .addresses .address p {
  color: #032642;
  opacity: 0.8;
}

.map {
  width: 100%;
  height: 600px;
  margin-bottom: 3rem;
}

.faq {
  padding: 2rem 0;
}
.faq .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.faq .container .faq-item {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 1rem;
}
.faq .container .faq-item h1 {
  display: flex;
  gap: 0.5rem;
  color: #032642;
  font-weight: 500;
  border-bottom: 1px solid rgba(181, 173, 160, 0.4588235294);
  font-size: 22px;
  padding-bottom: 0.5rem;
}
.faq .container .faq-item p {
  font-size: 18px;
  color: #032642;
  padding: 1rem 0;
  line-height: 1.5;
  opacity: 0.8;
}

.projects {
  padding: 2rem 0;
}
.projects .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.projects .container .project-item {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.projects .container .project-item .img {
  width: 100%;
  height: 300px;
  position: relative;
  border-bottom: 3px solid #032642;
}
.projects .container .project-item .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects .container .project-item .img .head {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.projects .container .project-item .img .head span {
  background-color: #cedee7;
  color: #032642;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.projects .container .project-item .img .head span img {
  width: 20px;
}
.projects .container .project-item .text {
  padding: 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects .container .project-item .text h1 {
  font-size: 22px;
  color: #032642;
}
.projects .container .project-item .text span {
  background-color: #f6ead6;
  color: #032642;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.projects .container .project-item .text span img {
  width: 20px;
}

.article {
  padding: 3rem 0;
}
.article .container h1 {
  text-align: center;
  color: #032642;
  font-size: 30px;
}
.article .container .date {
  font-size: 18px;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: #607383;
}
.article .container .thumbnail {
  width: 100%;
  height: 400px;
  border: 4px solid #dfdfdf;
  margin: 1rem 0;
}
.article .container .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article .container .content {
  font-size: 18px;
  color: #032642;
  opacity: 0.8;
}

.project {
  padding: 3rem 0;
}
.project .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.project .container .content p {
  font-size: 16px;
  color: #032642;
  opacity: 0.8;
}
.project .container .content .options {
  margin: 1rem 0;
}
.project .container .content .options p {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  gap: 2rem;
}
.project .container .content .options p .line {
  display: block;
  position: relative;
}
.project .container .content .options p .line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-top: 1px dashed #032642;
}
.project .container .content .location {
  height: 300px;
  width: 100%;
  margin-top: 2rem;
}
.project .container .content .location-text {
  color: #db3a3c;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
}
.project .container .img-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.project .container .img-container:hover {
  transform: scale(1.02);
}
.project .container .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.project .container .img-container .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project .container .img-container .img-overlay .overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-align: center;
}
.project .container .img-container .img-overlay .overlay-content .maximize-icon {
  width: 2rem;
  height: 2rem;
  stroke: white;
}
.project .container .img-container .img-overlay .overlay-content span {
  font-size: 0.9rem;
  font-weight: 500;
}
.project .container .img-container:hover .img-overlay {
  opacity: 1;
}
.project .container .img-container:nth-child(3) {
  grid-column: span 2;
}

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-modal.active {
  display: flex;
  opacity: 1;
}
.image-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.image-modal .modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.image-modal .modal-content .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10001;
}
.image-modal .modal-content .modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
}
.image-modal .modal-content .modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}
.image-modal .modal-content #modalImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .project .imgs .img-container:nth-child(3) {
    grid-column: span 1;
  }
  .image-modal .modal-content {
    padding: 1rem;
  }
  .image-modal .modal-content .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .image-modal .modal-content .modal-close svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-buttons.desktop-only {
  grid-column: span 2;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-buttons.desktop-only {
    display: none;
  }
}
.contact-buttons.mobile-only {
  display: none;
  margin-top: 2rem;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact-buttons.mobile-only {
    display: flex;
  }
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 100%;
}
.contact-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}
.contact-btn.primary {
  background-color: #032642;
  color: white;
}
.contact-btn.primary:hover {
  background-color: #042036;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 38, 66, 0.3);
}
.contact-btn.secondary {
  background-color: #b09e85;
  color: white;
}
.contact-btn.secondary:hover {
  background-color: #042036;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(176, 158, 133, 0.3);
}
.contact-btn:active {
  transform: translateY(0);
}

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-modal.active {
  display: flex;
  opacity: 1;
}
.contact-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.contact-modal .modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.contact-modal .modal-content .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10001;
}
.contact-modal .modal-content .modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
}
.contact-modal .modal-content .modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.contact-form-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.contact-form-container .form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-form-container .form-header h2 {
  color: #032642;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact-form-container .form-header p {
  color: #b09e85;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
}
.contact-form .form-group.full-width {
  grid-column: span 1;
}
.contact-form .form-group label {
  color: #032642;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  padding: 0.8rem;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: #f8f9fa;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #032642;
  background-color: white;
}
.contact-form .form-group input:required:invalid,
.contact-form .form-group select:required:invalid,
.contact-form .form-group textarea:required:invalid {
  border-color: #dc3545;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .form-group select {
  cursor: pointer;
}
.contact-form .form-actions {
  margin-top: 1rem;
}
.contact-form .form-actions .submit-btn {
  width: 100%;
  background-color: #032642;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-form .form-actions .submit-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}
.contact-form .form-actions .submit-btn:hover {
  background-color: #042036;
  transform: translateY(-1px);
}
.contact-form .form-actions .submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-form-container {
    margin: 1rem;
    padding: 1.5rem;
    max-height: 85vh;
  }
  .contact-modal .modal-content {
    padding: 1rem;
  }
  .contact-modal .modal-content .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .contact-modal .modal-content .modal-close svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .contact-form {
    gap: 1rem;
  }
  .contact-form .form-group label {
    font-size: 0.85rem;
  }
  .contact-form .form-group input,
  .contact-form .form-group select,
  .contact-form .form-group textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
}
.project .container .imgs .contact-buttons.desktop-only {
  margin-bottom: 1rem;
}
.project .container .content .contact-buttons.mobile-only {
  border-top: 1px solid #d7c9b2;
  padding-top: 2rem;
}

.statisics {
  background-image: url(./../imgs/states.jpg);
  background-size: cover;
  background-position: center;
  backgrouornd-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
  margin-bottom: 4rem;
  margin-top: 3rem;
}
.statisics::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #032642;
  opacity: 0.75;
  z-index: 1;
}
.statisics .container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.statisics .container .experiance {
  width: 100%;
  padding: 3rem;
  font-size: 30px;
  color: #fff;
  border: 10px solid #d3ba92;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.statisics .container .experiance span {
  font-size: 88px;
  line-height: 80px;
}
.statisics .container .text > h1 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 2rem;
}
.statisics .container .text > h1 span {
  border-bottom: 10px solid #d3ba92;
}
.statisics .container .text > p {
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 3rem;
}
.statisics .container .text .states {
  display: flex;
  padding: 0 1.5rem;
  justify-content: space-between;
}
.statisics .container .text .states h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  color: #fff;
  line-height: 46px;
}
.statisics .container .text .states h1 span {
  font-size: 46px;
  color: #d3ba92;
}

.gallery {
  margin-bottom: 4rem;
}
.gallery .container .gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.gallery .container .gallery-wrapper .img {
  width: 100%;
  height: 300px;
}
.gallery .container .gallery-wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  outline: none;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  cursor: pointer;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  cursor: pointer;
  z-index: 10001;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Gallery hover effects */
.gallery-wrapper .img {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-wrapper .img:hover {
  transform: scale(1.05);
}

.gallery-wrapper .img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: 15px;
    right: 15px;
  }
  .lightbox-prev {
    left: 15px;
  }
  .lightbox-next {
    right: 15px;
  }
  .lightbox-counter {
    bottom: 20px;
    font-size: 12px;
    padding: 6px 12px;
  }
}
/* Hide navigation buttons if only one image */
.lightbox[data-single-image=true] .lightbox-nav {
  display: none;
}

/* Animation styles for statistics */
.statistics-animated {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.statistics-animated.animate {
  opacity: 1;
  transform: translateY(0);
}

.counter-number {
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
}

.counter-number.counting {
  color: #007bff;
  transform: scale(1.05);
}

/* Pulse effect during counting */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.counter-number.pulse {
  animation: pulse 0.6s ease-in-out;
}

/* Swiper Slider Styles */
.project-slider {
  width: 730px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  height: 520px;
}
@media (max-width: 1536px) {
  .project-slider {
    width: 610px;
    height: 400px;
  }
}
@media (max-width: 1280px) {
  .project-slider {
    width: 480px;
    height: 270px;
  }
}
@media (max-width: 1024px) {
  .project-slider {
    width: 720px;
    height: 410px;
  }
}
@media (max-width: 768px) {
  .project-slider {
    width: calc(100vw - 40px);
    height: 210px;
    margin-bottom: 0;
  }
}

.project-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-slider .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #032642;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #032642;
  color: white;
}

/* Pagination */
.swiper-pagination-bullet {
  background-color: #d7c9b2;
  opacity: 0.6;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background-color: #032642;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .swiper-pagination {
    position: static !important;
    margin-top: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */
