* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f8f8;
  overflow-x: hidden;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  color: #fff;
}

/* First Section */
.sec-1 {
  background: linear-gradient(135deg, rgba(89, 62, 123, 0.8) 0%, rgba(230, 84, 100, 0.8) 100%);
}

.container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #f0e6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1.2s ease-in-out;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease-in-out;
}

.customform {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease;
}

/* form:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
} */

form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.bottom-f {
  box-shadow: 0px 0px 10px 0px #ccc;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #f0f0f0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 2px solid #E65464;
  box-shadow: 0 0 10px rgba(230, 84, 100, 0.4);
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #f0f0f0;
  margin-top: 10px;
}

.btn {
  display: block;
  width: 100%;
  background: #fff;
  color: #593E7B;
  font-size: 1rem;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.4s ease;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #E65464, #593E7B);
  color: #fff;
  box-shadow: 0 10px 25px rgba(230, 84, 100, 0.4);
}

/* Second Section */
.sec-2 {
  background: #fff;
  color: #593E7B;
  overflow: hidden;
  position: relative;
}

.sec-2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(rgba(89, 62, 123, 0.05), transparent);
  animation: rotateBg 20s linear infinite;
}

.sec-2 .container {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  z-index: 2;
}

.sec-2 .text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #593E7B, #E65464);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInLeft 1s ease-in-out;
}

.sec-2 .text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  animation: fadeInUp 1s ease-in-out;
}

.mockups {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInRight 1s ease-in-out;
}

.mockups img {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: perspective(600px) rotateY(0deg);
  transition: 0.6s ease;
}

.mockups img:hover {
  transform: perspective(600px) rotateY(10deg) scale(1.05);
  box-shadow: 0 15px 30px rgba(89, 62, 123, 0.4);
  filter: brightness(1.1);
}

.sec-3 {
  background: linear-gradient(135deg, rgba(230, 84, 100, 0.8) 0%, rgba(89, 62, 123, 0.8) 100%);
  color: #fff;
  padding: 80px 60px;
}

.sec-3 .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sec-3 .mockups.left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  animation: fadeInLeft 1s ease-in-out;
}

.sec-3 .mockups.left img {
  width: 240px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  transition: 0.6s ease;
  transform: perspective(700px) rotateY(0deg);
}

.sec-3 .mockups.left img:hover {
  transform: perspective(700px) rotateY(-10deg) scale(1.07);
  filter: brightness(1.15);
  box-shadow: 0 20px 35px rgba(255, 255, 255, 0.2);
}

.sec-3 .text {
  animation: fadeInRight 1s ease-in-out;
}

.sec-3 .text h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff, #e0c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-3 .text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f8f8f8;
}

@media (max-width: 900px) {
  .sec-3 .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sec-3 .mockups.left {
    flex-wrap: wrap;
  }
}

.sec-4 {
  background: #fff;
  padding: 80px 40px;
  color: #593E7B;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-content h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #593E7B, #E65464);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 22px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn.call {
  background: linear-gradient(135deg, #593E7B, #7A56A3);
  color: #fff;
}

.cta-btn.write {
  background: linear-gradient(135deg, #E65464, #F47B7B);
  color: #fff;
}

.cta-btn.chat {
  background: transparent;
  border: 2px solid #593E7B;
  color: #593E7B;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  position: relative;
}

.cta-images .mockup {
  position: relative;
  width: 230px;
  height: 320px;
  perspective: 700px;
  transition: 0.5s ease;
}

.cta-images .mockup img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.6s ease;
}

.cta-images .mockup.before:hover img {
  transform: rotateY(15deg) scale(1.05);
  filter: grayscale(0.6) brightness(0.9);
}

.cta-images .mockup.after:hover img {
  transform: rotateY(-15deg) scale(1.05);
  filter: brightness(1.1) saturate(1.3);
}


@media (max-width: 900px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-images {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}


.sec-5 {
  background: #f9f8ff;
  padding: 100px 60px;
  position: relative;
  color: #593E7B;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* .sec-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("https://via.placeholder.com/1600x800?text=Fixed+Background+Mockup") no-repeat center/cover;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-attachment: fixed;
  z-index: 0;
} */

.text-section {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto 70px;
}

.text-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #593E7B, #E65464);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease-in-out;
}

.text-section p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-in-out;
}

.mockup-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  animation: fadeInUp 1.2s ease-in-out;
}

.mockup-display .mockup {
  width: 250px;
  height: 350px;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.6s ease, filter 0.5s ease;
}

.mockup-display .mockup.front:hover {
  transform: rotateY(-10deg) scale(1.05);
  filter: brightness(1.2);
}

.mockup-display .mockup.spine:hover {
  transform: scale(1.08) rotateZ(2deg);
  filter: contrast(1.2);
}

.mockup-display .mockup.back:hover {
  transform: rotateY(10deg) scale(1.05);
  filter: saturate(1.3);
}

.card-container {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.card {
  background: #fff;
  flex: 1 1 calc(25% - 20px);
  min-width: 240px;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(89, 62, 123, 0.2), rgba(230, 84, 100, 0.2));
  transition: 0.5s;
  z-index: 0;
}

.card:hover::before {
  left: 0;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(89, 62, 123, 0.25);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #593E7B;
  z-index: 1;
  position: relative;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  z-index: 1;
  position: relative;
}

@media (max-width: 1000px) {
  .mockup-display {
    flex-wrap: wrap;
  }

  .card-container {
    justify-content: center;
  }

  .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 700px) {
  .card {
    flex: 1 1 100%;
  }
}


.sec-6 {
  background: linear-gradient(135deg, rgba(89, 62, 123, 0.85), rgba(230, 84, 100, 0.85));
  color: #fff;
  padding: 90px 50px;
  position: relative;
  overflow: hidden;
}

.cta6-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cta6-text {
  animation: fadeInLeft 1s ease-in-out;
}

.cta6-text h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #f0dfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta6-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f9f9f9;
  margin-bottom: 30px;
}

.cta6-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta6-btn {
  padding: 12px 26px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.4s ease;
}

.cta6-btn.contact {
  background: #fff;
  color: #593E7B;
}

.cta6-btn.chat {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cta6-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta6-mockup {
  text-align: center;
  animation: fadeInRight 1s ease-in-out;
  position: relative;
}

.cta6-mockup::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 360px;
  background: radial-gradient(rgba(255, 255, 255, 0.15), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  border-radius: 12px;
  z-index: 0;
}

.cta6-mockup img {
  width: 260px;
  height: 360px;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  transition: 0.6s ease;
  position: relative;
  z-index: 1;
}

.cta6-mockup img:hover {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 18px 40px rgba(230, 84, 100, 0.5);
  filter: brightness(1.1);
}

@media (max-width: 900px) {
  .cta6-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta6-buttons {
    justify-content: center;
  }

  .cta6-mockup {
    margin-top: 40px;
  }
}


.sec-7 {
  background: #fff;
  padding: 80px 60px;
  color: #593E7B;
}

.sec7-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 50px;
}

.sec7-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #593E7B, #E65464);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec7-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.sec7-slider {
  position: relative;
  width: 100%;
}

.swiper-slide.card {
  background: linear-gradient(135deg, rgba(89, 62, 123, 0.15), rgba(230, 84, 100, 0.15));
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: #593E7B;
  transition: 0.4s ease;
}

.swiper-slide.card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(89, 62, 123, 0.25);
  background: linear-gradient(135deg, rgba(230, 84, 100, 0.25), rgba(89, 62, 123, 0.25));
}

@media (max-width: 900px) {
  .sec7-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


.sec-8 {
  background: linear-gradient(135deg, rgba(89, 62, 123, 0.85), rgba(230, 84, 100, 0.85));
  color: #fff;
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.process-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #e6d6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-container p {
  font-size: 1.1rem;
  color: #f4f4f4;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.step-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 160px;
  height: 160px;
  background: radial-gradient(rgba(255, 255, 255, 0.25), transparent 60%);
  border-radius: 50%;
  transition: 0.6s ease;
}

.step-card:hover::before {
  top: -50px;
  left: -50px;
}

.step-number {
  display: inline-block;
  background: #fff;
  color: #593E7B;
  font-size: 1.4rem;
  font-weight: 700;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  line-height: 45px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.step-card:hover .step-number {
  background: #E65464;
  color: #fff;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}


.faq-section {
  background: #fff;
  color: #593E7B;
  padding: 100px 60px;
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-container h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #593E7B, #E65464);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-container p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 50px;
}

.faq-item {
  text-align: left;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f8ff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(89, 62, 123, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px 20px;
  color: #593E7B;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  background: rgba(230, 84, 100, 0.05);
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  padding: 0 20px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.6;
  padding-bottom: 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #E65464;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 70px 25px;
  }

  .faq-question {
    font-size: 1rem;
  }
}

.writing-bg {
  background: url(../images/book\ writing.webp) no-repeat 50% 50%;
  background-size: cover;
}

.ghost-bg {
  background: url(../images/Ghost\ writing.webp) no-repeat 50% 50%;
  background-size: cover;
}

.edit-bg {
  background: url(../images/Editng\ Proofreading.webp) no-repeat 50% 50%;
  background-size: cover;
}

.cover-bg {
  background: url(../images/Book\ Covers.webp) no-repeat 50% 50%;
  background-size: cover;
}

.audio-bg {
  background: url(../images/Audio\ Book.webp) no-repeat 50% 50%;
  background-size: cover;
}

.children-bg {
  background: url(../images/childern\ Book.webp) no-repeat 50% 50%;
  background-size: cover;
}

.publishing-bg {
  background: url(../images/book\ Publishng.webp) no-repeat 50% 50%;
  background-size: cover;
}

.marketing-bg {
  background: url(../images/Book\ Marketing.webp) no-repeat 50% 50%;
  background-size: cover;
}

.about-bg {
  background: url(../images/Book\ Marketing.webp) no-repeat 50% 50%;
  background-size: cover;
}

.contact-bg {
  background: url(../images/Contact.webp) no-repeat 50% 50%;
  background-size: cover;
}


.privacy-box {
  display: flex;
  flex-direction: column;
  width: 90%;
}

.privacy-box aside {
  padding: 20px 60px;
}

.terms-box aside {
  padding: 20px 60px;
}

.terms-box aside h4 {
  margin: 20px 0px;
}



.company-sec {
  position: relative;
  padding: 120px 60px;
  color: #fff;
  background: radial-gradient(circle at 20% 50%, #593E7B 0%, #2e2047 100%);
  overflow: hidden;
}

.company-sec::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 8px);
  animation: movePattern 30s linear infinite;
  z-index: 0;
}

.company-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.company-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, #E65464);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease;
}

.company-content h2 span {
  color: #E65464;
  text-shadow: 0 0 10px rgba(230, 84, 100, 0.4);
}

.company-content p {
  font-size: 1.15rem;
  color: #f4f4f4;
  line-height: 1.8;
  margin-bottom: 70px;
  animation: fadeInUp 1s ease;
}

.company-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 35px;
  flex-wrap: wrap;
}

.company-card {
  position: relative;
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: left;
  overflow: hidden;
  transition: 0.4s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.company-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(230, 84, 100, 0.2), rgba(255, 255, 255, 0));
  transform: rotate(45deg);
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: 0;
}

.company-card:hover::before {
  opacity: 1;
}

.company-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(230, 84, 100, 0.4);
}

.company-card .icon {
  font-size: 2.8rem;
  color: #E65464;
  margin-bottom: 20px;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}

.company-card:hover .icon {
  transform: scale(1.15) rotate(5deg);
  text-shadow: 0 0 15px rgba(230, 84, 100, 0.6);
}

.company-card .text {
  position: relative;
  z-index: 1;
}

.company-card .text h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.company-card .text p {
  font-size: 1.05rem;
  color: #f9f9f9;
}


@keyframes movePattern {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(100px, 100px);
  }
}

@media (max-width: 900px) {
  .company-sec {
    padding: 80px 30px;
  }

  .company-content h2 {
    font-size: 2.3rem;
  }
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  form,
  .mockups {
    margin-top: 40px;
  }
}




.mySwiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  background: #f5f5f5;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  min-height: 200px;
  box-sizing: border-box;
}



div#PopupControl_contactForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thank-box {
  height: 70vh;
  padding: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 28px;
  gap: 20px;
}

.privacy-box h2 {
  color: #000 !important;
}

.intl-tel-input .selected-flag {
    padding: 0 6px 0px 8px !important;
}

.customform .intl-tel-input .selected-flag {
    padding: 0 6px 12px 8px !important;
}

@media screen and (max-width: 991px) {
  section {
    flex-direction: column;
  }

  .terms-box {
    height: 100%;
    padding: 24px;
  }

  .book {
    position: relative;
  }

  .how-we-work-process .process-list .single-process:nth-child(2) {
    margin-top: unset;
  }

  .how-we-work-process .process-list .single-process:nth-child(3) {
    margin-top: unset;
  }

  .cta-stats {
    margin-top: 20px;
  }

  .how-we-work-process .process-list .single-process .content {
    padding-top: 45px;
  }
}