* {
  font-family: "Cairo", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  direction: rtl;
}

.container {
  width: 85%;
  margin: auto;
}

.home {
  background: url("../images/background.avif");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  color: white;
}
.home main {
  z-index: 1;
  height: 90vh;
  padding: 50px 0;
  display: flex;
  align-items: center;
}
.home main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home main .container .content {
  width: 45%;
}
.home main .container .content h1 {
  font-size: 60px;
  line-height: 1.4;
}
.home main .container .content h1 span {
  color: rgb(6, 182, 212);
  display: block;
}
.home main .container .content p {
  font-size: 18px;
  margin: 20px 0;
}
.home main .container .content .skills-hero {
  margin-bottom: 20px;
}
.home main .container .content .skills-hero span {
  background: rgba(255, 255, 255, 0.097);
  padding: 3px 15px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 10px;
  border-radius: 17px;
}
.home main .container .content .buttons {
  display: flex;
  gap: 15px;
}
.home main .container .content .btn {
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
}
.home main .container .content .btn.empty {
  border: 1px solid rgb(255, 255, 255);
  color: white;
}
.home main .container .content .btn.filled {
  border: 1px solid rgb(6, 182, 212);
  background: rgb(6, 182, 212);
  color: white;
}
.home main .container .image {
  width: 50%;
  padding: 17px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2392156863);
  display: flex;
  justify-content: center;
  align-items: center;
}
.home main .container .image img {
  width: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right bottom, rgb(10, 14, 25) 50%, #0e7490);
  z-index: -1;
}

header {
  z-index: 1;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: white;
}
header .container img {
  width: 35px;
}
header .container .logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}
header .container .links {
  display: flex;
  gap: 40px;
}
header .container a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
}
header .container .buttons {
  display: flex;
  gap: 15px;
}
header .container button {
  background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(2, 177, 208, 0.2));
  border: 0.5px solid rgba(255, 255, 255, 0.153);
  padding: 6px 25px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 5px;
}

.about {
  padding: 60px 0px;
  background: rgba(241, 245, 249, 0.6588235294);
}
.about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .container .about-content {
  width: 50%;
}
.about .container .about-content .content {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(66, 66, 66, 0.059);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.about .container .about-content .content::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 150px;
  height: 150px;
  background: rgba(60, 206, 255, 0.1215686275);
  border-radius: 50%;
}
.about .container .about-content .content div.h {
  z-index: 3 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #06b6d4;
  margin-bottom: 15px;
}
.about .container .about-content .content div.h ion-icon {
  padding: 10px;
  border-radius: 3px;
  color: #06b6d4;
  background: rgb(209, 241, 247);
  font-size: 18px;
}
.about .container .about-content .content:nth-child(2) div.h {
  color: rgb(255, 124, 43);
}
.about .container .about-content .content:nth-child(2) div.h ion-icon {
  color: rgb(255, 124, 43);
  background: rgb(255, 220, 207);
}
.about .container .about-content .content:nth-child(2)::before {
  background: rgba(255, 124, 43, 0.096);
}
.about .container .about-content .content:nth-child(3)::before {
  background: rgba(128, 0, 128, 0.084);
}
.about .container .about-content .content:nth-child(3) div.h {
  color: purple;
}
.about .container .about-content .content:nth-child(3) div.h ion-icon {
  color: purple;
  background: rgba(227, 198, 227, 0.8901960784);
}
.about .container .about-content .content:nth-child(3) .rights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.about .container .about-content .content:nth-child(3) .rights span {
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  color: #555;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.about .container .about-content .content:nth-child(3) .rights span ion-icon {
  color: purple;
  font-size: 16px;
  padding: 5px;
  border-radius: 50%;
  background-color: rgba(128, 0, 128, 0.222);
}
.about .container .about-image {
  width: 45%;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
.about .container .about-image::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 250px;
  height: 150px;
  background: rgb(6, 181, 212);
  border-radius: inherit;
  z-index: -1;
}
.about .container .about-image::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 500px;
  height: 150px;
  background: rgb(255, 124, 43);
  border-radius: inherit;
  z-index: -1;
}
.about .container .about-image img {
  border-radius: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.heading {
  text-align: center;
  margin-bottom: 25px;
}
.heading h2 {
  font-size: 36px;
  margin-bottom: 18px;
  position: relative;
}
.heading h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4.5px;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}
.heading p {
  font-size: 18px;
  width: 60%;
  margin: auto;
}

.heading h2 span {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading p {
  color: #64748b !important;
}

.heading .heading-span {
  color: #06b6d4;
  /* font-weight: bold; */
  background: rgba(6, 182, 212, 0.1);
  padding: 2px 15px;
  border-radius: 19px;
}

.services {
  padding: 50px 0;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.services .container .service {
  padding: 25px;
  background: linear-gradient(to right bottom, #ebfdff, #ebfdff);
  position: relative;
  border-radius: 11px;
  font-size: 18px;
  overflow: hidden;
}
.services .container .service button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: rgb(0, 148, 156);
  float: left;
  font-size: 17px;
  background-color: transparent;
}
.services .container .service p {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.9;
  color: #555;
}
.services .container .service::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 110%;
  height: 10px;
  background: linear-gradient(to right bottom, rgb(0, 148, 156));
  z-index: 1;
}
.services .container .service ion-icon {
  background: linear-gradient(to right bottom, rgb(0, 148, 156), #47edff);
  padding: 15px;
  color: white;
  border-radius: 5px;
}
.services .container .service:nth-child(2) {
  background: linear-gradient(to right bottom, rgba(255, 211, 184, 0.5), #ffceaf);
}
.services .container .service:nth-child(2) button {
  color: #ff7c2b;
}
.services .container .service:nth-child(2)::before,
.services .container .service:nth-child(2) ion-icon {
  background: linear-gradient(to right bottom, #ff7c2b, #ff7c2b);
}
.services .container .service:nth-child(3) {
  background: linear-gradient(to right bottom, rgba(200, 230, 201, 0.5));
}
.services .container .service:nth-child(3) button {
  color: #4caf50;
}
.services .container .service:nth-child(3)::before,
.services .container .service:nth-child(3) ion-icon {
  background: linear-gradient(to right bottom, #4caf50, #4caf50);
}
.services .container .service:nth-child(4) {
  background: linear-gradient(to right bottom, rgba(187, 222, 251, 0.5));
}
.services .container .service:nth-child(4) button {
  color: #2196f3;
}
.services .container .service:nth-child(4)::before,
.services .container .service:nth-child(4) ion-icon {
  background: linear-gradient(to right bottom, #2196f3, #2196f3);
}
.services .container .service:nth-child(5) {
  background: linear-gradient(to right bottom, rgba(225, 190, 231, 0.5));
}
.services .container .service:nth-child(5) button {
  color: #9c27b0;
}
.services .container .service:nth-child(5)::before,
.services .container .service:nth-child(5) ion-icon {
  background: linear-gradient(to right bottom, #9c27b0, #9c27b0);
}
.services .container .service:nth-child(6) {
  background: linear-gradient(to right bottom, rgba(255, 224, 178, 0.5));
}
.services .container .service:nth-child(6) button {
  color: #ff9800;
}
.services .container .service:nth-child(6)::before,
.services .container .service:nth-child(6) ion-icon {
  background: linear-gradient(to right bottom, #ff9800, #ff9800);
}

.gallery {
  background: rgba(241, 245, 249, 0.6588235294);
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery .gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
}
.gallery .gallery-header .filtering {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery .gallery-header .filtering button {
  padding: 7px 19px;
  color: #64748b;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  background: white;
}
.gallery .gallery-header .filtering button.active {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  border: none;
}
.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.gallery .container img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 5px 0 0;
  transition: 0.5s;
}
.gallery .container .image {
  transition: 0.5s;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  background-color: white;
  position: relative;
  box-shadow: 0 5px 15px rgba(41, 41, 41, 0.082);
}
.gallery .container .image .b {
  padding: 10px 25px 15px 25px;
  transition: 0.5s;
}
.gallery .container .image .b h2 {
  font-size: 18px;
  margin-bottom: 5px;
}
.gallery .container .image .b p {
  font-size: 18px;
  color: #555;
  margin-bottom: 5px;
}
.gallery .container .image .b span {
  background-color: rgba(93, 233, 255, 0.4431372549);
  color: rgb(0, 191, 255);
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
}
.gallery .container .image:hover img {
  width: 130%;
}
.gallery .container .image.brand span {
  background-color: rgba(255, 93, 233, 0.2039215686);
  color: rgb(255, 93, 233);
}
.gallery .container .image.social span {
  background-color: rgba(255, 166, 93, 0.2235294118);
  color: rgb(255, 144, 93);
}

.procces {
  padding: 50px 0;
  background-color: #ffffff;
}
.procces .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.procces .container .step {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  transition: 0.5s;
}
.procces .container .step:hover {
  box-shadow: 0 15px 15px rgba(173, 173, 173, 0.062);
  transform: translateY(-5px);
}
.procces .container .step span {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 40px;
  transform: translate(-50%, -50%);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.1137254902);
}
.procces .container .step ion-icon {
  background-color: rgba(93, 233, 255, 0.4431372549);
  color: rgb(0, 191, 255);
  padding: 15px;
  border-radius: 5px;
  font-size: 24px;
  margin-bottom: 15px;
}
.procces .container .step:nth-child(2) ion-icon {
  background-color: rgba(255, 124, 43, 0.4431372549);
  color: #ff7c2b;
}
.procces .container .step:nth-child(3) ion-icon {
  background-color: rgba(203, 34, 255, 0.4431372549);
  color: rgb(163, 2, 163);
}
.procces .container .step:nth-child(4) ion-icon {
  background-color: rgba(76, 175, 80, 0.4431372549);
  color: #4caf50;
}
.procces .container .step p {
  color: #555;
  line-height: 1.8;
}

.calltoaction {
  background: #0f172a;
}
.calltoaction .cta {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.calltoaction .cta .wow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: -5;
}

.cta-parent {
  padding: 80px 0;
}
.cta-parent .cta {
  background: rgb(6, 182, 212);
  color: white;
  padding: 50px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-parent .cta::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: rgba(255, 254, 254, 0.1803921569);
  z-index: 1;
  border-radius: 50%;
}
.cta-parent .cta::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: -45px;
  width: 150px;
  height: 150px;
  background: rgba(255, 254, 254, 0.1803921569);
  z-index: 1;
  border-radius: 50%;
}
.cta-parent .cta span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  background-color: rgba(255, 255, 255, 0.216);
}
.cta-parent .cta h2 {
  font-size: 40px;
}
.cta-parent .cta .buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.cta-parent .cta .buttons button {
  cursor: pointer;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid white;
  color: white;
}
.cta-parent .cta .buttons button:nth-child(1) {
  background: transparent;
}
.cta-parent .cta .buttons button:nth-child(2) {
  background: white;
  color: rgb(6, 182, 212);
}

.testimonials {
  padding: 60px 0;
  background: rgba(241, 245, 249, 0.6588235294);
}
.testimonials .heading {
  margin-bottom: 50px !important;
}
.testimonials .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonials .container .test {
  background-color: white;
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.testimonials .container .test:hover {
  transform: translateY(-10px) !important;
}
.testimonials .container .test .rate {
  color: #ffc107;
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}
.testimonials .container .test .rate ion-icon {
  font-size: 18px;
}
.testimonials .container .test q {
  color: #444;
  line-height: 1.9;
  margin-top: 20px;
  font-size: 15px;
  display: block;
  font-style: italic;
}
.testimonials .container .test span.hm {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 50px;
  color: rgba(93, 233, 255, 0.15);
}
.testimonials .container .test .user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.testimonials .container .test .user span {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #4b89a2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.testimonials .container .test .user .info {
  flex: 1;
}
.testimonials .container .test .user .info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}
.testimonials .container .test .user .info p {
  font-size: 13px;
  color: #888;
}

.contact {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 0;
}
.contact .heading {
  margin-bottom: 50px !important;
}
.contact .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.contact .container .contact-box {
  padding: 35px;
  cursor: pointer;
  border-radius: 15px;
  border: 1px solid #cbd5e1;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact .container .contact-box:hover {
  transform: translateY(-5px) !important;
}
.contact .container .contact-box::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 10px;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  z-index: 1;
  transition: 0.5s;
}
.contact .container .contact-box:hover::before {
  width: 110%;
}
.contact .container .contact-box .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}
.contact .container .contact-box .icon-wrapper.whats {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}
.contact .container .contact-box .icon-wrapper.insta {
  background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f56040 100%);
}
.contact .container .contact-box .icon-wrapper.location {
  background: linear-gradient(135deg, #ff7c2b 0%, #ff5722 100%);
}
.contact .container .contact-box .icon-wrapper.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005983 100%);
}
.contact .container .contact-box .icon-wrapper.mail {
  background: linear-gradient(135deg, #6090ff 0%, #544ba2 100%);
}
.contact .container .contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}
.contact .container .contact-box p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.contact .container .contact-box .contact-link {
  display: inline-block;
  padding: 10px 24px;
  color: #3eecff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.service-modal.active {
  opacity: 1;
  visibility: visible;
}
.service-modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 10px;
  width: 95%;
  max-height: 95vh;
  overflow-y: auto;
  padding: 40px 30px;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    max-width: 95%;
  }
}
@media (max-width: 480px) {
  .modal-content {
    padding: 20px 15px;
  }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #1f2937;
  transition: transform 0.3s ease;
  z-index: 10;
}
.close-btn:hover {
  transform: scale(1.2);
}
@media (max-width: 480px) {
  .close-btn {
    top: 15px;
    right: 15px;
    font-size: 28px;
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .modal-header {
    margin-bottom: 30px;
  }
}

.modal-icon {
  font-size: 64px;
  color: rgb(6, 182, 212);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .modal-icon {
    font-size: 48px;
  }
}

.modal-header h2 {
  font-size: 32px;
  color: #1f2937;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .modal-header h2 {
    font-size: 24px;
  }
}

.modal-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.modal-body {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .modal-body {
    margin-bottom: 30px;
  }
}
.modal-body h3 {
  font-size: 24px;
  color: #1f2937;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .modal-body h3 {
    font-size: 20px;
  }
}

.service-details {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .service-details {
    margin-bottom: 30px;
  }
}
.service-details ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
@media (max-width: 768px) {
  .service-details ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.service-details ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}
.service-details ul li:hover {
  background: #eff2ff;
  transform: translateX(-5px);
}
.service-details ul li ion-icon {
  font-size: 20px;
  color: rgb(6, 182, 212);
  flex-shrink: 0;
}

.modal-portfolio {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .modal-portfolio {
    margin-bottom: 30px;
  }
}
.modal-portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .modal-portfolio .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .modal-portfolio .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
}

.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.portfolio-item:hover img {
  transform: scale(1.1);
}
.portfolio-item:hover .portfolio-info {
  opacity: 1;
}
.portfolio-item img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 480px) {
  .portfolio-item img {
    height: 120px;
  }
}
.portfolio-item .portfolio-info {
  padding: 15px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.portfolio-item .portfolio-info h4 {
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 5px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .portfolio-item .portfolio-info h4 {
    font-size: 12px;
  }
}
.portfolio-item .portfolio-info p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .portfolio-item .portfolio-info p {
    font-size: 11px;
  }
}

.service-process {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .service-process {
    margin-bottom: 30px;
  }
}
.service-process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .service-process .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .service-process .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.process-step {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #eff2ff 0%, #f8f9fa 100%);
  border-radius: 12px;
  border-left: 4px solid rgb(6, 182, 212);
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateX(-5px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
}
@media (max-width: 480px) {
  .process-step {
    padding: 15px;
    gap: 12px;
  }
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgb(6, 182, 212);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

.step-content {
  flex: 1;
}
.step-content h4 {
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 8px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .step-content h4 {
    font-size: 14px;
  }
}
.step-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .step-content p {
    font-size: 12px;
  }
}

.modal-cta {
  background: linear-gradient(135deg, rgb(6, 182, 212) 0%, rgb(4.5963302752, 139.4220183486, 162.4036697248) 100%);
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .modal-cta {
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .modal-cta {
    padding: 25px 15px;
  }
}
.modal-cta span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}
.modal-cta span ion-icon {
  font-size: 20px;
}
.modal-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
  border: none;
}
@media (max-width: 768px) {
  .modal-cta h3 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .modal-cta h3 {
    font-size: 18px;
  }
}
.modal-cta p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .modal-cta p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .modal-cta p {
    font-size: 13px;
  }
}
.modal-cta .buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .modal-cta .buttons {
    flex-direction: column;
    gap: 12px;
  }
}
.modal-cta .buttons button {
  padding: 12px 30px;
  border-radius: 8px;
  border: 2px solid white;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.modal-cta .buttons button.filled {
  background: white;
  color: rgb(6, 182, 212);
}
.modal-cta .buttons button.filled:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.modal-cta .buttons button.empty {
  background: transparent;
  color: white;
}
.modal-cta .buttons button.empty:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .modal-cta .buttons button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

.modal-content::-webkit-scrollbar {
  width: 4px;
}
.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb {
  background: #8d8d8d;
  border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgb(4.5963302752, 139.4220183486, 162.4036697248);
}

footer {
  background: #0f172a;
}
footer .text {
  width: 80%;
  margin: auto;
  padding: 40px;
  text-align: center;
  color: #cbd5e1;
  border-top: 1px solid #2b2b2b;
}
@media (max-width: 500px) {
  footer .text {
    padding: 15px;
  }
}
footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  align-items: flex-start;
  justify-content: center;
  padding: 50px 0;
  gap: 10px;
  border-bottom: #0f172a 1px solid;
}
@media (max-width: 500px) {
  footer .container {
    grid-template-columns: 1fr;
    padding: 40px 15px;
    gap: 20px;
  }
}
footer .container:nth-child(1) .logo {
  display: flex;
}
footer .container:nth-child(1) .logo img {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
footer .container p {
  color: #cbd5e1;
  font-size: 14px;
}
footer .container .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
footer .container .social-icons a {
  color: #cbd5e1;
  font-size: 22px;
  transition: 0.3s;
  padding: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: rgba(143, 143, 143, 0.093);
  border-radius: 50%;
}
footer .container .social-icons a:hover {
  color: #fff;
}
footer .container h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}
footer .container ul {
  list-style: none;
}
footer .container ul li {
  margin-bottom: 10px;
}
footer .container ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
footer .container ul li a:hover {
  color: #fff;
}

.whatsapp {
  z-index: 1000;
}

/* ==========================================
   RESPONSIVE CSS FOR TATWIR WEBSITE
   ========================================== */
/* Burger Menu Styles */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1000;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 3px;
}

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

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

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

/* ==========================================
   LARGE SCREENS (1200px and below)
   ========================================== */
@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
  .home main .container .content h1 {
    font-size: 50px;
  }
  .heading p {
    width: 70%;
  }
  .services .container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
/* ==========================================
   TABLETS (992px and below)
   ========================================== */
@media (max-width: 992px) {
  .container {
    width: 95%;
  }
  /* Show Burger Menu */
  .burger-menu {
    display: flex;
  }
  /* Hide regular buttons on mobile */
  .home header .container .buttons {
    display: none;
  }
  /* Mobile Navigation Menu */
  .home header .container .links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(10, 14, 25, 0.98), rgba(14, 116, 144, 0.98));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  .home header .container .links.active {
    right: 0;
  }
  .home header .container .links a {
    font-size: 20px;
    padding: 10px 20px;
    width: 80%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  /* Home Section */
  .home main {
    height: auto;
    padding: 30px 0;
  }
  .home main .container {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .home main .container .content,
  .home main .container .image {
    width: 100%;
  }
  .home main .container .content h1 {
    font-size: 42px;
  }
  .home main .container .content p {
    font-size: 16px;
  }
  .home main .container .content .buttons {
    flex-wrap: wrap;
  }
  /* About Section */
  .about .container {
    flex-direction: column;
    gap: 30px;
  }
  .about .container .about-content,
  .about .container .about-image {
    width: 100%;
  }
  .about .container .about-image::before,
  .about .container .about-image::after {
    width: 200px;
    height: 100px;
  }
  /* Heading */
  .heading h2 {
    font-size: 32px;
  }
  .heading p {
    width: 85%;
    font-size: 16px;
  }
  /* Services */
  .services .container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  /* Gallery */
  .gallery .container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  /* Process */
  .procces .container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  /* CTA */
  .cta-parent .cta h2 {
    font-size: 32px;
  }
  .cta-parent .cta .buttons {
    flex-wrap: wrap;
  }
  /* Testimonials */
  .testimonials .container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  /* Contact */
  .contact .container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
/* ==========================================
   MOBILE LANDSCAPE (768px and below)
   ========================================== */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
  /* Header */
  .home header .container .logo {
    font-size: 20px;
  }
  .home header .container img {
    width: 30px;
  }
  .home header .container .links {
    width: 280px;
  }
  /* Home Section */
  .home main .container .content h1 {
    font-size: 36px;
    line-height: 1.3;
  }
  .home main .container .content p {
    font-size: 15px;
    line-height: 1.7;
  }
  .home main .container .content .skills-hero span {
    font-size: 13px;
    padding: 3px 12px;
    margin-left: 5px;
    margin-bottom: 8px;
  }
  .home main .container .content .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  /* About Section */
  .about {
    padding: 40px 0;
  }
  .about .container .about-content .content {
    padding: 20px;
  }
  .about .container .about-content .content div.h h3 {
    font-size: 18px;
  }
  .about .container .about-content .content p {
    font-size: 15px;
  }
  .about .container .about-image::before {
    width: 150px;
    height: 80px;
  }
  .about .container .about-image::after {
    width: 300px;
    height: 100px;
  }
  /* Heading */
  .heading h2 {
    font-size: 28px;
  }
  .heading p {
    width: 95%;
    font-size: 15px;
  }
  /* Services */
  .services {
    padding: 40px 0;
  }
  .services .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services .container .service {
    padding: 20px;
  }
  .services .container .service h3 {
    font-size: 20px;
  }
  .services .container .service p {
    font-size: 15px;
  }
  /* Gallery */
  .gallery {
    padding: 50px 0;
  }
  .gallery .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery .container img {
    height: 300px;
  }
  .gallery .container .image .b h2 {
    font-size: 16px;
  }
  .gallery .container .image .b p {
    font-size: 14px;
  }
  .gallery .gallery-header .filtering {
    gap: 8px;
  }
  .gallery .gallery-header .filtering button {
    padding: 6px 15px;
    font-size: 14px;
  }
  /* Process */
  .procces {
    padding: 40px 0;
  }
  .procces .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .procces .container .step {
    padding: 20px;
  }
  .procces .container .step h3 {
    font-size: 18px;
  }
  .procces .container .step p {
    font-size: 15px;
  }
  /* CTA */
  .cta-parent {
    padding: 50px 0;
  }
  .cta-parent .cta {
    padding: 35px 25px;
  }
  .cta-parent .cta h2 {
    font-size: 26px;
    text-align: center;
  }
  .cta-parent .cta p {
    text-align: center;
    font-size: 15px;
  }
  .cta-parent .cta .buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-parent .cta .buttons button {
    width: 100%;
    padding: 12px 20px;
  }
  /* Testimonials */
  .testimonials {
    padding: 40px 0;
  }
  .testimonials .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonials .container .test {
    padding: 25px;
  }
  .testimonials .container .test q {
    font-size: 15px;
  }
  /* Contact */
  .contact {
    padding: 40px 0;
  }
  .contact .container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact .container .contact-box {
    padding: 25px;
  }
  .contact .container .contact-box h3 {
    font-size: 18px;
  }
  /* WhatsApp Button */
  .whatsapp {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}
/* ==========================================
   MOBILE PORTRAIT (576px and below)
   ========================================== */
@media (max-width: 576px) {
  .container {
    width: 92%;
  }
  /* Header */
  .home header .container {
    padding: 15px 0;
  }
  .home header .container .logo {
    font-size: 18px;
  }
  .home header .container img {
    width: 28px;
  }
  .home header .container .links {
    width: 250px;
  }
  .home header .container .links a {
    font-size: 18px;
  }
  /* Home Section */
  .home main {
    padding: 20px 0;
  }
  .home main .container .content h1 {
    font-size: 32px;
  }
  .home main .container .content p {
    font-size: 14px;
    margin: 15px 0;
  }
  .home main .container .content .skills-hero {
    margin-bottom: 15px;
  }
  .home main .container .content .skills-hero span {
    font-size: 12px;
    padding: 2px 10px;
  }
  .home main .container .content .buttons {
    gap: 10px;
  }
  .home main .container .content .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .home main .container .image {
    padding: 12px;
  }
  /* About Section */
  .about {
    padding: 35px 0;
  }
  .about .container .about-content .content {
    padding: 18px;
    margin-bottom: 12px;
  }
  .about .container .about-content .content div.h {
    margin-bottom: 12px;
  }
  .about .container .about-content .content div.h h3 {
    font-size: 16px;
  }
  .about .container .about-content .content div.h ion-icon {
    padding: 8px;
    font-size: 16px;
  }
  .about .container .about-content .content p {
    font-size: 14px;
    line-height: 1.7;
  }
  .about .container .about-content .content:nth-child(3) .rights span {
    font-size: 14px;
  }
  .about .container .about-image {
    padding: 12px;
  }
  .about .container .about-image::before {
    width: 120px;
    height: 60px;
  }
  .about .container .about-image::after {
    width: 200px;
    height: 80px;
  }
  /* Heading */
  .heading {
    margin-bottom: 20px;
  }
  .heading h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .heading h2::after {
    width: 50px;
    height: 3.5px;
  }
  .heading p {
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }
  /* Services */
  .services {
    padding: 35px 0;
  }
  .services .container {
    gap: 15px;
  }
  .services .container .service {
    padding: 18px;
  }
  .services .container .service h3 {
    font-size: 18px;
  }
  .services .container .service p {
    font-size: 14px;
    line-height: 1.7;
  }
  .services .container .service button {
    font-size: 15px;
    padding: 8px 16px;
  }
  .services .container .service ion-icon {
    padding: 12px;
  }
  /* Gallery */
  .gallery {
    padding: 40px 0;
  }
  .gallery .container {
    gap: 15px;
  }
  .gallery .container img {
    height: 250px;
  }
  .gallery .container .image .b {
    padding: 10px 20px 12px 20px;
  }
  .gallery .container .image .b h2 {
    font-size: 15px;
  }
  .gallery .container .image .b p {
    font-size: 13px;
  }
  .gallery .container .image .b span {
    font-size: 11px;
    padding: 2px 8px;
  }
  .gallery .gallery-header .filtering {
    gap: 6px;
  }
  .gallery .gallery-header .filtering button {
    padding: 5px 12px;
    font-size: 13px;
  }
  /* Process */
  .procces {
    padding: 35px 0;
  }
  .procces .container {
    gap: 15px;
  }
  .procces .container .step {
    padding: 18px;
  }
  .procces .container .step span {
    top: 35px;
    left: 35px;
    font-size: 35px;
  }
  .procces .container .step h3 {
    font-size: 16px;
  }
  .procces .container .step p {
    font-size: 14px;
    line-height: 1.7;
  }
  .procces .container .step ion-icon {
    padding: 12px;
    font-size: 20px;
    margin-bottom: 12px;
  }
  /* CTA */
  .cta-parent {
    padding: 40px 0;
  }
  .cta-parent .cta {
    padding: 30px 20px;
    border-radius: 15px;
  }
  .cta-parent .cta span {
    font-size: 10px;
    padding: 4px 12px;
  }
  .cta-parent .cta h2 {
    font-size: 22px;
    margin: 10px 0;
  }
  .cta-parent .cta p {
    font-size: 14px;
    line-height: 1.7;
  }
  .cta-parent .cta .buttons {
    margin-top: 15px;
  }
  .cta-parent .cta .buttons button {
    padding: 10px 18px;
    font-size: 14px;
  }
  .cta-parent .cta::before {
    width: 60px;
    height: 60px;
  }
  .cta-parent .cta::after {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -30px;
  }
  /* Testimonials */
  .testimonials {
    padding: 35px 0;
  }
  .testimonials .container {
    gap: 15px;
  }
  .testimonials .container .test {
    padding: 20px;
  }
  .testimonials .container .test .rate {
    margin-bottom: 12px;
  }
  .testimonials .container .test .rate ion-icon {
    font-size: 18px;
  }
  .testimonials .container .test q {
    font-size: 14px;
    line-height: 1.7;
  }
  .testimonials .container .test span.hm {
    font-size: 35px;
  }
  .testimonials .container .test .user {
    gap: 12px;
    margin-top: 20px;
  }
  .testimonials .container .test .user span {
    width: 45px;
    height: 45px;
  }
  .testimonials .container .test .user .info h3 {
    font-size: 15px;
  }
  .testimonials .container .test .user .info p {
    font-size: 13px;
  }
  /* Contact */
  .contact {
    padding: 35px 0;
  }
  .contact .container {
    gap: 12px;
  }
  .contact .container .contact-box {
    padding: 20px;
  }
  .contact .container .contact-box ion-icon {
    padding: 12px;
    font-size: 20px;
  }
  .contact .container .contact-box h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .contact .container .contact-box p {
    font-size: 14px;
  }
  /* WhatsApp Button */
  .whatsapp {
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
/* ==========================================
   VERY SMALL MOBILE (400px and below)
   ========================================== */
@media (max-width: 400px) {
  .container {
    width: 95%;
  }
  .home header .container .logo {
    font-size: 16px;
  }
  .home header .container img {
    width: 25px;
  }
  .home header .container .links {
    width: 220px;
  }
  .home main .container .content h1 {
    font-size: 28px;
  }
  .heading h2 {
    font-size: 22px;
  }
  .services .container,
  .gallery .container,
  .procces .container,
  .testimonials .container,
  .contact .container {
    grid-template-columns: 1fr;
  }
  .gallery .container img {
    height: 220px;
  }
  .cta-parent .cta h2 {
    font-size: 20px;
  }
}
/* ==========================================
   LANDSCAPE ORIENTATION FIX
   ========================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .home main {
    height: auto;
    min-height: 100vh;
  }
  .home header .container .links {
    padding: 20px 0;
    overflow-y: auto;
  }
}/*# sourceMappingURL=style.css.map */