@font-face {
  font-family: mirath;
  src: url(font/فونت\ میراث.ttf);
}

@font-face {
  font-family: estedad;
  src: url(font/Estedad.ttf);
}

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

body {
  top: 0;
  margin: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  overflow-x: hidden;
}

html {
  font-family: vazirmatn;
  scroll-behavior: smooth;
}

/********** HERO SECTION **********/

.sectionhero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.sectionhero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
  opacity: 0.3;
}

.herocontainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  max-width: 130rem;
  padding: 4.8rem 4.8rem;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.hero-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.heroimg {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.heroimg:hover {
  transform: scale(1.05);
}

.herotext {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  text-align: center;
  color: #ffffff;
  padding-top: 2.4rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainheader {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
  font-family: estedad;
  color: #ffffff;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.herotozihat {
  font-size: 1.6rem;
  line-height: 1.9;
  font-weight: 400;
  text-align: justify;
  direction: rtl;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.buttons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}

.button-more {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: estedad;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}

.button-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.button-more:hover::before {
  left: 100%;
}

.button-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.button-less {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s;
  font-family: estedad;
}

.button-less:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.sticky .sectionhero {
  margin-top: 81.43px;
}

/*********** HEADER SECTION ***********/

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.4rem;
}

.logo-img {
  width: 5.5rem;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.3s;
}

.logo-img:hover {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.nav-items {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s;
  position: relative;
}

.nav-items::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-items:hover::after {
  width: 80%;
}

.nav-items:hover {
  color: #667eea;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-family: estedad;
}

.nav-last-item {
  margin-right: 2.4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  color: #fff;
  transition: all 0.3s;
  padding: 1rem 2rem;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.nav-last-item::after {
  display: none;
}

.nav-last-item:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.header-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 9997;
}

.button-mobile-nav {
  border: none;
  background: none;
  display: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0.3rem;
}

.button-mobile-nav:hover {
  transform: scale(1.1);
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.icon-mobile-nav {
  height: 3.5rem;
  width: 3.5rem;
  color: #667eea;
}

.nav-open .icon-mobile-nav {
  color: #667eea;
}

.sticky .header-section {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  position: fixed;
  width: 100%;
  z-index: 9997;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  top: 0;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/******** HOW TO WORK WITH US SECTION ********/

.how-section {
  background: #ffffff;
  position: relative;
}

.how-section-container {
  max-width: 120rem;
  text-align: center;
  padding: 8rem 9.6rem;
  color: #333;
  margin: 0 auto;
}

.how-img-text-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 4rem;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.how-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.how-img-container::before {
  display: flex;
  content: "";
  width: 10%;
  padding: 26%;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  position: absolute;
  border-radius: 50%;
  z-index: -2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.how-img-container::after {
  content: "";
  width: 5%;
  padding: 23%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.how-img {
  max-width: 45%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.how-text-container {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.titr {
  font-size: 1.8rem;
  text-align: right;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  font-family: estedad;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.titr-biger {
  font-size: 3rem;
  text-align: right;
  margin-top: 1.2rem;
  font-family: estedad;
  color: #2d3748;
  font-weight: 800;
  line-height: 1.3;
}

.how-text-tozihat {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
  direction: rtl;
}

.how-text-number {
  font-family: vazirmatn;
  font-size: 6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  margin-top: 0;
  opacity: 0.3;
}

.how-text-titr {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-family: estedad;
  color: #2d3748;
}

/*********** KHADAMAT SECTION ***********/

.khadamat-section {
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
  padding: 8rem 0 8rem 3.2rem;
  color: #333;
  position: relative;
}

.khadamat-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4rem;
  padding: 2.4rem 0 4.8rem 0;
  color: #333;
  max-width: 120rem;
}

.khadamat {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.khadamat-img {
  max-width: 80%;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.khadamat-items:hover .khadamat-img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.khadamat-text {
  font-size: 1.6rem;
  color: #333;
  font-weight: 500;
  margin: 0;
  text-align: center;
  /* font-family: estedad; */
}

.khadamat-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.iconss {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  margin-top: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.iconss:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.icon {
  padding: 0.5rem 0.6rem 0.5rem 0;
  font-size: 2.2rem;
  color: #667eea;
  transition: all 0.3s;
}

.iconss:hover .icon {
  color: #ffffff;
  transform: scale(1.2);
}

.icon01 {
  font-size: 2.6rem;
  padding-right: 0.2rem;
}

.khadamat-titr {
  text-align: right;
  padding-right: 9.6rem;
  padding-top: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: estedad;
  font-weight: 700;
}

.khadamat-titr-bozorg {
  text-align: right;
  padding-bottom: 3rem;
  padding-right: 9.6rem;
  font-size: 3rem;
  font-family: estedad;
  color: #2d3748;
  font-weight: 800;
  line-height: 1.3;
}

/* Gallery Container */
.gallery-container {
  position: relative;
  width: 100%;
}

/* Gallery Preview */
.gallery-preview {
  position: relative;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
}

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  aspect-ratio: 1;
}

.gallery-preview-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  z-index: 10;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.1);
}

.gallery-preview-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-preview-item:hover::before {
  opacity: 1;
}

/* Hidden images initially */
.gallery-preview-item.hidden {
  display: none;
}

.view-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 2rem auto 0;
  padding: 1.2rem 2.4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: estedad;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.view-all-btn ion-icon {
  font-size: 1.6rem;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal.active {
  display: flex;
  opacity: 1;
}

.gallery-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.gallery-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: estedad;
  margin: 0;
}

.close-gallery {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-gallery:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.close-gallery ion-icon {
  font-size: 1.8rem;
}

/* Gallery Slider */
.gallery-slider {
  position: relative;
  height: calc(100% - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.gallery-slide-container {
  position: relative;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(102, 126, 234, 0.8);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(102, 126, 234, 1);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-nav ion-icon {
  font-size: 1.4rem;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  display: flex;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: #f8f9fa;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #667eea #f1f1f1;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 3px;
}

.thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  transform: scale(1.1);
  border-color: #667eea;
}

.thumbnail.active {
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

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

/* Gallery Counter */
.gallery-counter {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
  }

  .gallery-preview-item img {
    height: 100%;
  }

  .gallery-modal-content {
    width: 95%;
    height: 95%;
  }

  .gallery-slide-container {
    width: 90%;
    height: 70%;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }

  .gallery-thumbnails {
    padding: 0.8rem 1rem;
  }

  .thumbnail {
    width: 70px;
    height: 70px;
  }

  .gallery-header {
    padding: 1rem 1.5rem;
  }

  .gallery-header h3 {
    font-size: 1.4rem;
  }

  .view-all-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
  }

  .gallery-preview-item img {
    height: 100%;
  }

  .gallery-slide-container {
    width: 95%;
    height: 60%;
  }

  .gallery-nav {
    width: 35px;
    height: 35px;
  }

  .gallery-nav ion-icon {
    font-size: 1.2rem;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .gallery-counter {
    bottom: 0.5rem;
    right: 1rem;
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}

/********* call to action section *********/

.cta-section {
  max-width: 120rem;
  color: #333;
}

.back-img {
  background-image: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.75),
      rgba(118, 75, 162, 0.75)
    ),
    url(images/cta/3.webp);
  height: 50vh;
  background-size: cover;
  display: flex;
  background-position: center;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.back-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.cta-section-container {
  max-width: 120rem;
}

.why-us {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3.2rem 6.4rem;
  gap: 2.4rem;
}

.contact-us {
  font-size: 3.2rem;
  color: #ffffff;
  font-family: estedad;
  font-weight: 800;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
}

.contact-num {
  font-size: 2.8rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  gap: 1.5rem;
}

.phone-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 2.4rem;
  padding: 1.4rem;
  color: #667eea;
  background-color: #fff;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.phone-icon:hover {
  background-color: #2d3748;
  color: #fff;
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.info-border {
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem 18rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.why-us-icons {
  width: 5.5rem;
  height: 5.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1.4rem;
  border-radius: 15px;
  color: #ffffff;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.3s;
}

.info:hover .why-us-icons {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.info {
  text-align: right;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
}

.info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.info-titr {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: right;
  font-family: estedad;
  color: #2d3748;
  margin-bottom: 0.8rem;
}

.why-us-tozihat {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  direction: rtl;
}

.tamas {
  display: flex;
  flex-direction: column;
  margin: 0;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
}

/*********** blog section  **********/

.blog-section {
  color: #333;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  padding: 8rem 0;
}

.blog-container {
  max-width: 120rem;
  padding: 3.2rem 6.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3.2rem;
  margin: 0 auto;
}

.header-blog {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  text-align: center;
  margin-right: 6.4rem;
  margin-left: 6.4rem;
  font-family: estedad;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-img {
  max-width: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 200px;
  object-fit: cover;
  object-position: bottom;
}

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

.blog-img-container {
  overflow: hidden;
}

.blogs {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.blogs:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.titr-blog {
  font-size: 1.6rem;
  color: #2d3748;
  font-family: estedad;
  font-weight: 700;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.blogs:hover .titr-blog {
  color: #667eea;
}

.tozih-blog {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  direction: rtl;
  color: #4a5568;
}

.blog-text {
  text-align: right;
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.edame {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: estedad;
  transition: all 0.3s;
  margin-top: auto;
  padding-top: 1rem;
}

.edame:hover {
  transform: translateX(-5px);
}

.flesh-blog {
  width: 1.8rem;
  height: 1.8rem;
  padding: 0.4rem;
}

/******** cta form********/

.form-section {
  padding: 8rem 9.6rem;
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.form-section-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 110rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  direction: rtl;
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.form-section-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.form-section-container::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.form-section-img {
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.35),
      rgba(69, 44, 142, 0.35)
    ),
    url(images/form\ image.webp);

  background-size: cover;
  background-position: center;
}

.form-section-text {
  padding: 3rem 4.8rem 3rem 4.8rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.form-section-form label {
  font-size: 1.3rem;
  display: block;
  padding-bottom: 0.8rem;
  font-family: estedad;
  font-weight: 600;
  color: #ffffff;
}

.form-section-form input {
  padding: 1rem 1.2rem;
  width: 100%;
  border-radius: 15px;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.form-section-form input:focus {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-section-form input::placeholder {
  color: #dad8d8;
}

.form-section-form button {
  width: 100%;
  padding: 1.2rem;
  border-radius: 15px;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: inherit;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.3s;
}

.form-section-form select {
  padding: 1rem 1.2rem;
  width: 100%;
  border-radius: 15px;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1.2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.form-section-form select:focus {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-section-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4.2rem;
  row-gap: 1.6rem;
}

.form-btn {
  margin-top: 1.2rem;
  background: #ffffff;
  color: #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-btn:hover {
  background: #2d3748;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.form-section-text {
  text-align: center;
}

.form-section-header {
  font-size: 2.8rem;
  font-family: estedad;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.form-section-second-header {
  font-size: 1.5rem;
  padding: 0 0 3rem 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

*:focus {
  outline: none;
}

/******** footer section********/

.footer-section {
  padding: 8rem 0 0 0;
  background: linear-gradient(180deg, #f5f7fa 0%, #2d3748 100%);
}

.footer-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  background-image: linear-gradient(
      rgba(45, 55, 72, 0.95),
      rgba(45, 55, 72, 0.95)
    ),
    url(images/footer/pest.jpg);
  background-size: cover;
  padding: 5rem 4rem;
  align-items: start;
}

.footer-image-container {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-img {
  max-width: 100%;
}

.footer-about-us {
  line-height: 1.8;
  text-align: right;
  color: #fff;
}

.footer-about-us h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.footer-contact-us {
  line-height: 1.8;
  text-align: right;
  color: #fff;
}

.footer-contact-us h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.contact-us-text {
  display: flex;
  align-items: center;
  direction: rtl;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-us-text {
  display: flex;
  align-items: center;
  direction: rtl;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-logo-img {
  max-width: 5%;
  border-radius: 100%;
  margin-bottom: 1rem;
}

.footer-logo-img-container {
  text-align: center;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 2rem 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.logo-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0;
  line-height: 1.6;
}

.logo-text:nth-child(3) {
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
}

.footer-about-us .flesh-blog {
  width: 1.4rem;
  height: 1.4rem;
  padding: 0 0 0 0.4rem;
}

.contact-us-header {
  font-family: estedad;
}

.about-us-header {
  font-family: estedad;
}
