@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Main Color Variable */
:root {
    --main-color: #ff7900;
    --main-color-dark: #e66a00;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff7900 0%, #e66a00 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(8, 4, 29, 0.5);
}

@font-face {
  font-family: "Comfortaa";
  src: url('../fonts/Comfortaa-VariableFont_wght.ttf');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  cursor: none;
  background: #fff !important;
  overflow-x: hidden;
  color: #000000;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999999999999999;
  background-color: #08041d;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loader img {
  width: 300px;
  height: auto;
  margin: auto;
  object-fit: contain;
}

.cursor {
  width: 5px;
  height: 5px;
  border: 1px solid #333;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  z-index: 9999999;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cursor::after {
  content: "";
  width: 35px;
  height: 35px;
  display: block;
  background: transparent;
  border: 1px solid #333;
  border-radius: 50%;
  opacity: 0.5;
  top: -15px;
  left: -15px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  transition-property: background, transform;
  backdrop-filter: grayscale();
}

.link-grow::after {
  transform: scale(2);
  background-color: rgba(0, 0, 0, 0.3);
}

.btn-link-grow::after {
  transform: scale(2);
  background-color: rgba(0, 0, 0, 0.3);
}

.link-url-link-grow::after {
  transform: scale(2);
  background-color: rgba(0, 0, 0, 0.3);
}

.click-link-grow::after {
  animation: anmi 0.3s 1;
}

@keyframes anmi {
  0% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

/**** top navbar **/
.top-nav {
  height: 40px;
  width: 100%;
  background: rgba(137, 0, 99, 0.40);
  backdrop-filter: blur(7px);
}

/* navbar */
.bg-custom-light {
  height: 80px;
  background: rgba(8, 4, 29, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-custom-light.fixed-top {
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.navbar-custom-light .navbar-nav .nav-link:hover,
.bg-custom-light .nav-item .nav-link.active,
.navbar-custom-light .navbar-nav .nav-link:focus {
  color: #ff7900;
  font-weight: bold;
}

.bg-custom-light .navbar-brand img {
  width: 50px;
}

.bg-custom-light .website-name {
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  vertical-align: bottom;
}

.bg-custom-light .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 10px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.bg-custom-light .nav-item .nav-link:hover {
  color: #ff7900;
  transform: translateY(-2px);
}

.bg-custom-light .nav-item.btn-item:hover::before {
  width: 0;
}

.bg-custom-light .nav-item.active::before,
.bg-custom-light .nav-item:hover::before {
  width: 93%;
}

.bg-custom-light .fa-bars {
  display: none;
  color: #333;
}

.bg-custom-light .fa-close {
  color: #FFF;
}

.bg-custom-light .fa {
  display: none;
}



@media (max-width:992px) {

  .bg-custom-light .fa-bars,
  .bg-custom-light .fa-close {
    display: block;
  }

  .bg-custom-light .btn-nav {
    margin-left: 8px;
    width: 91%;
    padding: 9px 0 9px 15px;
  }

  .bg-custom-light .nav-item .nav-link {
    text-align: center;
  }

  .bg-custom-light .nav-item.active::before,
  .bg-custom-light .nav-item:hover::before {
    width: 31%;
  }

  .bg-custom-light .fa {
    display: block;
    /* color:#FFF; */
    margin: 12px 25px;
    font-size: 25px;
    cursor: pointer;
  }

  .bg-custom-light .navbar-collapse {
    height: 100vh;
    width: 200px;
    background-color: #333;
    top: 0;
    right: -200px;
    position: fixed;
    text-align: left;
    z-index: 2;
    transition: 0.5s;
    display: block;
  }
}




/* header */
.header {
  height: 600px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 121, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.header img {
  height: 600px;
  object-fit: contain;
  float: right;
}

.header .head-details .span-alert {
  background: rgba(255, 121, 0, 0.8);
  color: rgba(255, 255, 255, 1);
  padding: 6px 13px 5px;
  border-radius: 20px;
  text-transform: capitalize;
}

.header .head-details {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76%;
}

.header h1 {
  color: #ffffff;
  font-size: 67px;
  font-weight: 800;
  margin-top: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header h1 span {
  color: rgba(255, 121, 0, 1)
}

.header img {
  width: 100%;
}

.header p {
  font-size: 27px;
  margin: 30px 0 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.header p span {
  font-weight: bold;
}


.header button {
  padding: 15px 35px;
  font-size: 19px;
  margin-right: 20px;
  background: linear-gradient(135deg, #ff7900 0%, #e66a00 100%);
  border: none;
  border-radius: 50px;
  color: #FFF;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 121, 0, 0.4);
}

.header button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 121, 0, 0.6);
}


.header button:focus {
  outline: 0;
  box-shadow: none;
}


@media (max-width:1220px) {
  /* .header img {
    height: 560px;
  } */

  .header .owl-dots {
    bottom: -5%;
  }

  .header button {
    padding: 13px 10px;
    font-size: 17px;
  }
}

@media (max-width:992px) {
  .header button {
    padding: 13px 10px;
    font-size: 15px;
  }

  .header h1 {
    font-size: 40px;
  }
}

@media (max-width:890px) {
  .header button {
    padding: 13px 5px;
    font-size: 10px;
  }

  /* .header img {
    height: 400px;
  }

  .header {
    height: 640px;
  } */

  .header h1 {
    font-size: 35px;
  }
}

@media (max-width:622px) {
  .header button {
    margin-top: 0;
  }

  .header button.google {
    margin-top: 5px;
  }

  .header h1 {
    font-size: 30px;
  }

  .header .head-details .span-alert {
    font-size: 10px;
  }

  .header {
    height: 500px;

  }
}

@media (max-width:576px) {
  .header img {
    margin-right: 0;
  }

  .header p {
    font-size: 12px;
    margin: 20px 0;

  }

}

@media (max-width:480px) {
  .header h1 {
    font-size: 20px;
  }
}



/* Medical Center */

.medical-center {
  padding: 60px 0;
  background: rgba(8, 4, 29, 0.5);
}

.medical-center .item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  height: 130px;
  padding: 20px;
  border-radius: 15px;
  margin: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.medical-center .item:hover {
  box-shadow: 0px 8px 25px rgba(255, 121, 0, 0.3);
  transform: translateY(-5px);
  border-color: rgba(255, 121, 0, 0.5);
}

.medical-center .item img {
  width: 70%;
  height: 100%;
  object-fit: contain;
}

.medical-center .span-alert {
  background: rgba(255, 121, 0, 0.8);
  color: rgba(255, 255, 255, 1);
  padding: 7px 25px 4px;
  border-radius: 20px;
  text-transform: capitalize;
  margin: 0 100px 45px 100px;
  display: inline-flex;
}





/* services */

.services {
  padding: 50px 100px;
  background: #fff;
}

.services .span-alert {
  background: rgba(255, 121, 0, 0.8);
  color: rgba(255, 255, 255, 1);
  padding: 7px 25px 4px;
  border-radius: 20px;
  text-transform: capitalize;
  margin: 0 0 45px 0;
  display: inline-flex;
}

.services h1 {
  font-size: 40px;
  line-height: 55px;
  color: rgba(0, 30, 137, 0.8);
  font-weight: bold;
  margin-bottom: 20px;
}

.services .item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  margin-bottom: 20px;
  min-height: 100px;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services .item:hover {
  box-shadow: 0px 8px 25px rgba(255, 121, 0, 0.3);
  transform: translateY(-5px);
  border-color: rgba(255, 121, 0, 0.5);
}

.services .item .image {
  margin-right: 25px;
}

.services .item span {
  color: #ffffff;
  font-size: 19px;
  text-transform: capitalize;
  font-weight: 500;
}



/* why choose us */
.why-choose-us {
  padding: 50px 100px;
  background: rgba(26, 15, 61, 0.5);
}

.why-choose-us .span-alert {
  background: rgba(255, 121, 0, 0.8);
  color: rgba(255, 255, 255, 1);
  padding: 7px 25px 4px;
  border-radius: 20px;
  text-transform: capitalize;
  margin: 0 0 35px 0;
  display: inline-flex;
}

.why-choose-us h1 {
  font-size: 40px;
  line-height: 55px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 30px;
}

.why-choose-us .item {
  background: rgba(255, 121, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 15px;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 121, 0, 0.3);
}

.why-choose-us .item:hover {
  box-shadow: 0px 8px 25px rgba(255, 121, 0, 0.4);
  transform: translateY(-5px);
  background: rgba(255, 121, 0, 0.2);
}

.why-choose-us .item .image {
  margin-right: 25px;
}

.why-choose-us .item span {
  color: #FFF;
  font-size: 19px;
  text-transform: capitalize;
}

.why-choose-us .why-choose-img img {
  margin-top: -80px;
  width: 90%;
  object-fit: contain;
}



/* blogs */

.blog {
  padding: 50px 100px;
  background: #fff;
}

.blog .span-alert {
  background: rgba(255, 121, 0, 0.8);
  color: rgba(255, 255, 255, 1);
  padding: 7px 25px 4px;
  border-radius: 20px;
  text-transform: capitalize;
  margin: 0 0 45px 0;
  display: inline-flex;
}

.blog .item h2 {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
}

.blog .item-3 h2 {
  padding-top: 10px;
}

.blog .item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 4px 10px 4px 4px;
  border-radius: 15px;
  display: flex;
  margin-bottom: 20px;
  min-height: 100px;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog .item:hover {
  box-shadow: 0px 8px 25px rgba(255, 121, 0, 0.3);
  transform: translateY(-5px);
  border-color: rgba(255, 121, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
}


.blog .item .image {
  margin-right: 25px;
}

.blog .item .image img {
  height: 180px;
  object-fit: contain;
}

.blog .item-2 .image img {
  width: 180px;
}

.blog .item-1 .image img {
  width: 280px;
}

.blog .item-3 .image img {
  width: 180px;
}

.blog .item p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.blog .item span {
  color: rgba(0, 30, 137, 1);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: bold;
}

.blog .blog-bottom {
  display: flex;
  place-content: space-between;
}

.blog .blog-bottom .created_details .created_by {
  margin-right: 25px;
}

.blog .blog-bottom .link-details a {
  color: #ff7900;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.blog .blog-bottom .link-details a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.blog .item-3 .blog-bottom .link-details {
  place-self: flex-end;
}

.blog .blog-bottom .link-details a:hover {
  color: rgba(255, 121, 0, 1)
}



/* why-choose-us2 */

.why-choose-us2 {
  padding: 50px 100px 70px;
  background: rgba(26, 15, 61, 0.5);
}

.why-choose-us2 .span-alert {
  background: rgba(255, 121, 0, 0.8);
  color: rgba(255, 255, 255, 1);
  padding: 7px 25px 4px;
  border-radius: 20px;
  text-transform: capitalize;
  margin: 0 0 45px 0;
  display: inline-flex;
}

.why-choose-us2 h1 {
  font-size: 40px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 30px;
}

.why-choose-us2 h1 span {
  color: rgba(255, 121, 0, 1)
}


.why-choose-us2 .image {
  margin-right: 25px;
  text-align: center;
}

.why-choose-us2 .item span {
  color: rgba(0, 30, 137, 0.8);
  font-size: 19px;
  text-transform: capitalize;
}

.why-choose-us2 .details h2 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
}

.why-choose-us2 .details p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}




/* footer */
footer {
  background: rgba(8, 4, 29, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer .container-fluid {
  padding: 50px 100px;
}

footer .item h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  margin-top: 15px;
}

footer .item ul {
  list-style: none;
}

footer .item ul li a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 32px;
  font-size: 17px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

footer .item ul li a:hover {
  color: #ff7900;
  transform: translateX(5px);
}

footer .item ul li i {
  margin-right: 15px;
  padding-top: 8px;
  font-size: 16px
}

footer .item ul.links li a {
  display: flex;
}

footer .social-media ul {
  list-style: none;
}

footer .social-media ul li {
  display: inline-block;
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 25px;
  transition: 0.4s;
}

footer .social-media ul li a {
  color: #FFF;
  background: rgba(255, 121, 0, 0.2);
  display: block;
  transition: all 0.4s ease;
  padding: 3px;
  border-radius: 7px;
  border: 1px solid rgba(255, 121, 0, 0.3);
}

footer .social-media ul li a i {
  font-size: 25px;
}

footer .social-media ul li a:hover {
  background: rgba(255, 121, 0, 1)
}



footer .copyright {
  background: rgba(8, 4, 29, 0.8);
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .copyright p {
  font-size: 17px;
  font-weight: 100;
  margin: 0;
}


footer .content {
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
}

footer .subscription {
  position: relative;
  width: 100%;
  height: 100%;
}

footer .subscription .add-email {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 75px 0 20px;
  background: transparent;
  color: #ffffff;
}

footer .subscription .add-email::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

footer .subscription .add-email::placeholder {
  text-align: right;
}

footer .subscription .submit-email {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  border: none;
  outline: none;
  background: rgba(153, 165, 208, 1);
  color: rgba(0, 30, 137, 1);
  transition: width .35s ease-in-out, background .35s ease-in-out;
  font-size: 18px;
}

footer .subscription.done .submit-email {
  width: calc(100%);
  background: #30469e;
  color: #FFF;
}

footer .subscription .submit-email .before-submit,
footer .subscription .submit-email .after-submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 50px;
  transition: visibility .35s ease-in-out,
    opacity .35s ease-in-out;
}

footer .subscription.done .submit-email .before-submit,
footer .subscription:not(.done) .submit-email .after-submit {
  visibility: hidden;
  opacity: 0;
}

footer .subscription .submit-email .after-submit {
  transition-delay: .35s;
}

footer .subscription:not(.done) .submit-email .before-submit,
footer .subscription.done .submit-email .after-submit {
  visibility: visible;
  opacity: 1;
}


.bottom-footer {
  background: linear-gradient(90deg, #ff7900 0%, #e66a00 100%);
  height: 7px;
}

.topbtn {
  width: 40px;
  height: 40px;
  background: rgba(255, 121, 0, 0.8);
  ;
  color: #FFF;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  cursor: pointer;
  position: fixed;
  bottom: 25px;
  right: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width:576px) {

  .medical-center .span-alert,
  .services .span-alert,
  .why-choose-us .span-alert,
  .blog .span-alert,
  .why-choose-us2 .span-alert {
    background: rgba(255, 121, 0, 0.8);
    color: rgba(255, 255, 255, 1);
    padding: 7px 25px 4px;
    border-radius: 20px;
    text-transform: capitalize;
    margin: 0 0 30px 0;
    display: inline-flex;
    font-size: 10px;
  }

  .medical-center .item {
    height: 100px;
  }

  .services,
  .why-choose-us,
  .blog {
    padding: 40px 0px;
  }

  .services h1,
  .why-choose-us h1,
  .why-choose-us2 h1 {
    font-size: 25px;
    line-height: 30px;
  }

  .services .item span {
    font-size: 13px;
  }

  .why-choose-us .item span {
    font-size: 15px;
  }

  .why-choose-us .why-choose-img img {
    margin-top: 0;
  }

  .blog .item-2 .image img,
  .blog .item-1 .image img,
  .blog .item-3 .image img {
    width: 100px;
  }

  .blog .item h2 {
    font-size: 17px;
  }

  .blog .item p {
    font-size: 10px;
  }

  .blog .item span {
    font-size: 10px;
  }

  .blog .blog-bottom .created_details .created_by {
    margin-right: 5px;
  }

  .blog .blog-bottom .link-details a {
    font-size: 10px;
  }

  .blog .blog-bottom .created_details {
    display: flex;
    align-items: center;
  }

  .why-choose-us2 {
    padding: 40px 0px 60px;
  }

  .why-choose-us2 .image img {
    width: 100%;
    margin-bottom: 20px;
  }

  .why-choose-us2 .details h2 {
    font-size: 24px;
  }

  .why-choose-us2 .details p {
    font-size: 12px;
  }

  footer .container-fluid {
    padding: 50px 25px 15px;
  }

  footer .item h2 {
    font-size: 23px;
  }

  footer .item ul li a {
    line-height: 28px;
    font-size: 15px;
  }

  footer .copyright p {
    font-size: 10px;
  }

  footer .social-media ul li a i {
    font-size: 15px;
  }

  footer .social-media ul li {
    margin-left: 10px;
    width: 30px;
  }
  .header .head-details {
    top: 40%;
  }
}

.services .item .image img,
.why-choose-us .item .image img {
  width: 30px;
}

footer .download-app .images{
    display: flex;
}


footer .download-app .images img{
    width: 155px;
    margin: 8px;
}

/* Modern Navbar Styles */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.header-main {
    position: relative;
}

.header-area {
    padding: 25px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-blur {
    background: transparent;
    border: none;
    box-shadow: none;
}

.sticky-header {
    position: sticky;
    top: 20px;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.header-logo {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    margin-right: 30px;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 35px;
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 245, 255, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.main-nav {
    display: flex;
    justify-content: center;
    flex: 1;
    min-width: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Hide mobile menu logo on desktop */
.mobile-menu-logo {
    display: none;
}

.menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.menu-item {
    position: relative;
}

.menu-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: block;
    font-family: 'Inter', sans-serif;
}

.menu-link:hover,
.menu-link.active {
    color: #ff7900;
}

.header-action {
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    flex-shrink: 0;
}

.header-action.desktop-action {
    display: flex;
}

.header-action.mobile-menu-action {
    display: none;
}

.header-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    flex-shrink: 0;
    margin-left: 15px;
}

.header-action.desktop-action {
    display: flex;
}

.header-action.mobile-menu-action {
    display: none;
}

.header-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    background: transparent;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

/* Modern Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 200px 0 100px;
    overflow: hidden;
    background: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
       position: absolute;
    border-radius: 0;
    background: radial-gradient(circle, rgb(255 121 0 / 0%) 0%, #ed6e0030 70%);
    filter: blur(40px);
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 121, 0, 0.2);
    border: 1px solid rgba(255, 121, 0, 0.5);
    border-radius: 50px;
    color: #ff7900;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 25px;
    margin-top: 0;
}

.text-gradient {
    background: linear-gradient(135deg, #ff7900 0%, #e66a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7900 0%, #e66a00 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 121, 0, 0.6);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    max-width: 100%;
    height: 500px;
    position: relative;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
    width: 265px;
    max-width: 265px;
    border-radius: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid #000;
    object-fit: cover;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-floating-icon {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 121, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 8s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 15px;
    min-width: 120px;
    z-index: 99;
}

.hero-stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-app-icon {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-app-icon svg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-stat-badge img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 8px;
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #ff7900;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.hero-stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.hero-icon-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-icon-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(-5px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(-10px, -5px) rotate(3deg);
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 54px;
    }
}

@media (max-width: 991px) {
    .header-wrapper {
        justify-content: space-between;
    }
    
    .header-logo {
        margin-right: 20px;
    }
    
    .header-menu {
        justify-content: space-between;
        padding: 10px 15px;
        flex-wrap: wrap;
    }
    
    .main-nav {
        position: relative;
        left: auto;
        transform: none;
        flex: 1;
    }
    
    .header-action {
        position: relative;
        right: auto;
        margin-left: 10px;
    }
    
    .menu-list {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .menu-link {
        font-size: 14px;
        white-space: nowrap;
    }
    
    .header-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .menu-link:hover {
        transform: translateY(-2px);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-main-img {
        width: 250px;
        max-width: 250px;
        border-radius: 30px;
        border: 6px solid #000;
    }
    
    .hero-floating-icon {
        min-width: 100px;
        padding: 12px;
        z-index: 99;
    }
    
    .hero-stat-number {
        font-size: 16px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
    
    .hero-stat-badge img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    /* Mobile menu styles are handled in the comprehensive responsive section below */
    
    .header-area.scrolled {
        top: 10px;
    }
    
    .header-area.scrolled .header-menu {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                    0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-main-img {
        width: 200px;
        max-width: 200px;
        border-radius: 25px;
        border: 5px solid #000;
    }
    
    .hero-floating-icon {
        min-width: 90px;
        padding: 10px;
        z-index: 99;
    }
    
    .hero-stat-number {
        font-size: 14px;
    }
    
    .hero-stat-label {
        font-size: 10px;
    }
    
    .hero-stat-badge img {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-hero {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Testimonials Section */
.app-testimonial-area {
    position: relative;
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
    width: 100%;
}

.app-testimonial-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.testimonial-shape-1,
.testimonial-shape-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.3;
    animation: floatShape 15s ease-in-out infinite;
}

.testimonial-shape-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.testimonial-shape-2 {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.testimonial-shape-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 121, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg);
    }
}

.app-testimonial-warp {
    position: relative;
    z-index: 2;
}

.app-testimonial-heading {
    position: relative;
    margin-bottom: 0;
}

.testimonial-badge,
.faq-badge {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-title,
.tp-section-title-playfair {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.tp-section-title-playfair span {
    font-style: italic;
    color: #999;
    font-weight: 400;
}

.app-testimonial-big-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.app-testimonial-big-text h3 {
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.app-testimonial-review-width {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.app-testimonial-review {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
}

.app-testimonial-review-icon {
    flex-shrink: 0;
}

.app-testimonial-review-icon svg {
    width: 38px;
    height: 38px;
}

.app-testimonial-review-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-testimonial-review-content span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}

.app-testimonial-review-content span i {
    font-style: normal;
    font-weight: 700;
}

.app-testimonial-review-content span svg {
    width: 14px;
    height: 13px;
}

.app-testimonial-review-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.app-testimonial-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 100px;
    max-width: 100%;
    overflow: visible;
}

.app-testimonial-area .container-fluid {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
}

.testimonial-carousel {
    padding: 20px 0;
    width: 100%;
    position: relative;
}

/* Override Owl Carousel default button styles */
.owl-carousel .owl-nav [class*='owl-'] {
    color: #ffffff !important;
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    display: flex !important;
    border: none !important;
}

.owl-carousel .owl-nav .disabled {
    opacity: 0.5 !important;
    cursor: default !important;
}

.app-testimonial-item {
       background: #FFF;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(33 33 33 / 10%);
    border-radius: 20px;
    padding: 30px;
    margin: 0 15px;
    transition: all 0.3s ease;
    height: auto;
}

.app-testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 121, 0, 0.3);
    border-color: rgba(255, 121, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.app-testimonial-item-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.app-testimonial-item-icon {
    flex-shrink: 0;
}

.app-testimonial-item-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 121, 0, 0.3);
}

.app-testimonial-item-icon-content {
    flex: 1;
}

.app-testimonial-item-icon-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
}

.app-testimonial-item-icon-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.app-testimonial-item-content {
    margin-top: 20px;
}

.app-testimonial-item-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.app-testimonial-item-star {
    display: flex;
    gap: 4px;
}

.app-testimonial-item-star svg {
    width: 14px;
    height: 13px;
}

/* Owl Carousel Customization for Testimonials */
.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 5;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #696969 !important;
    margin: 0  !important;
    transition: all 0.3s ease;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    padding: 0 !important;
    display: inline-block !important;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    background: #ff7900 !important;
    width: 30px !important;
    border-radius: 6px !important;
    box-shadow: 0 0 10px rgba(255, 121, 0, 0.5) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    display: none !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 200px);
    left: -100px;
    right: -100px;
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    margin: 0;
}

.testimonial-carousel .owl-nav button {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-size: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    pointer-events: all !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.testimonial-carousel .owl-nav button:hover {
    background: rgba(255, 121, 0, 0.4) !important;
    border-color: rgba(255, 121, 0, 0.6) !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(255, 121, 0, 0.4) !important;
}

.testimonial-carousel .owl-nav button.owl-prev {
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.testimonial-carousel .owl-nav button.owl-next {
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.testimonial-carousel .owl-nav button.owl-prev::after {
    content: '←' !important;
    font-size: 28px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    line-height: 1 !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.testimonial-carousel .owl-nav button.owl-next::after {
    content: '→' !important;
    font-size: 28px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    line-height: 1 !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.testimonial-carousel .owl-nav button span,
.testimonial-carousel .owl-nav button .nav-icon,
.testimonial-carousel .owl-nav button::before {
    display: none !important;
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .testimonial-title,
    .tp-section-title-playfair {
        font-size: 42px;
    }
    
    .app-testimonial-big-text h3 {
        font-size: 150px;
    }
    
    .app-testimonial-review {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .app-testimonial-wrapper {
        padding: 0 70px;
    }
    
    .testimonial-carousel .owl-nav {
        width: calc(100% + 140px);
        left: -70px;
        right: -70px;
    }
    
    .testimonial-carousel .owl-nav button.owl-prev,
    .testimonial-carousel .owl-nav button.owl-next {
        transform: translateY(-50%) !important;
    }
}

@media (max-width: 767px) {
    .app-testimonial-area {
        padding: 80px 0;
    }
    
    .testimonial-title,
    .faq-title,
    .tp-section-title-playfair {
        font-size: 32px;
    }
    
    .app-testimonial-big-text h3 {
        font-size: 100px;
    }
    
    .app-testimonial-wrapper {
        padding: 0 50px;
    }
    
    .app-testimonial-item {
        padding: 20px;
        margin: 0 10px;
    }
    
    .app-testimonial-wrapper {
        padding: 0 60px;
    }
    
    .testimonial-carousel .owl-nav {
        width: calc(100% + 120px);
        left: -60px;
        right: -60px;
    }
    
    .testimonial-carousel .owl-nav button {
        width: 45px !important;
        height: 45px !important;
    }
    
    .testimonial-carousel .owl-nav button.owl-prev,
    .testimonial-carousel .owl-nav button.owl-next {
        transform: translateY(-50%) !important;
    }
    
    .testimonial-carousel .owl-nav button.owl-prev::after,
    .testimonial-carousel .owl-nav button.owl-next::after {
        font-size: 22px !important;
    }
}

/* Ready To Download CTA Section */
.app-cta-area {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(26, 15, 61, 0.3) 100%);
    overflow: hidden;
    z-index: 1;
}

.app-cta-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 121, 0, 0.15) 0%, transparent 70%);
    border-radius: 0 100% 100% 0;
    z-index: 0;
}

.app-cta-area::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 100% 0 0 100%;
    z-index: 0;
}

.app-cta-wrap {
    position: relative;
    z-index: 2;
}

.app-cta-wrapper {
    padding: 30px 0;
}

.app-cta-heading {
    margin-bottom: 40px;
}

.app-cta-title {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.app-cta-description {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 40px 0;
}

/* App Statistics */
.app-cta-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.app-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.2);
}

.app-stat-icon {
    flex-shrink: 0;
}

.app-stat-content {
    display: flex;
    flex-direction: column;
}

.app-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff7900;
    margin: 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.app-stat-label {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-cta-store-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-cta-store-box .images {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-cta-store-box .download-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-cta-store-box .download-button:hover {
    transform: translateY(-3px);
}

.app-cta-store-box .download-button img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Legacy styles for old structure - keeping for compatibility */
.app-cta-store {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-decoration: none;
    color: inherit;
}

.app-cta-store:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 121, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.3);
}

.app-cta-store-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-cta-store-icon svg {
    width: 30px;
    height: 30px;
}

.app-cta-store-content {
    display: flex;
    flex-direction: column;
}

.app-cta-store-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.2;
}

.app-cta-store-content span {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 2px;
}

.app-cta-thumb-wrap {
    position: relative;
    z-index: 2;
}

.app-cta-thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

.app-cta-thumb-1 {
    position: absolute;
    z-index: 3;
    transform: rotate(-12deg) translateX(-60px);
    animation: floatPhone1 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.app-cta-thumb-1:hover {
    transform: rotate(-12deg) translateX(-60px) translateY(-10px) scale(1.05);
}

.app-cta-thumb-2 {
    position: absolute;
    z-index: 2;
    transform: rotate(12deg) translateX(60px);
    animation: floatPhone2 6s ease-in-out infinite;
    animation-delay: 1s;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.app-cta-thumb-2:hover {
    transform: rotate(12deg) translateX(60px) translateY(-10px) scale(1.05);
}

.cta-phone-img {
    max-width: 100%;
    height: auto;
    width: 350px;
    border-radius: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    display: block;
}

@keyframes floatPhone1 {
    0%, 100% {
        transform: rotate(-12deg) translateX(-60px) translateY(0);
    }
    50% {
        transform: rotate(-12deg) translateX(-60px) translateY(-15px);
    }
}

@keyframes floatPhone2 {
    0%, 100% {
        transform: rotate(12deg) translateX(60px) translateY(0);
    }
    50% {
        transform: rotate(12deg) translateX(60px) translateY(-15px);
    }
}

/* Responsive CTA Section */
@media (max-width: 1199px) {
    .app-cta-title {
        font-size: 56px;
    }
    
    .cta-phone-img {
        width: 280px;
    }
}

@media (max-width: 991px) {
    .app-cta-area {
        padding: 80px 0;
    }
    
    .app-cta-wrapper {
        padding: 60px 0;
        text-align: center;
    }
    
    .app-cta-title {
        font-size: 42px;
    }
    
    .app-cta-description {
        font-size: 18px;
    }
    
    .app-cta-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .app-stat-item {
        padding: 12px 18px;
    }
    
    .app-stat-number {
        font-size: 20px;
    }
    
    .app-stat-label {
        font-size: 12px;
    }
    
    .app-cta-store-box {
        justify-content: center;
    }
    
    .app-cta-thumb {
        min-height: 400px;
        margin-top: 40px;
    }
    
    .cta-phone-img {
        width: 250px;
    }
    
    .app-cta-thumb-1 {
        transform: rotate(-5deg) translateX(-30px);
    }
    
    .app-cta-thumb-2 {
        transform: rotate(5deg) translateX(30px);
    }
}

@media (max-width: 767px) {
    .app-cta-title {
        font-size: 36px;
    }
    
    .app-cta-description {
        font-size: 16px;
    }
    
    .app-cta-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .app-stat-item {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    .app-stat-number {
        font-size: 22px;
    }
    
    .app-stat-label {
        font-size: 13px;
    }
    
    .app-cta-store {
        min-width: 180px;
        padding: 12px 20px;
    }
    
    .app-cta-store-content span {
        font-size: 16px;
    }
    
    .app-cta-thumb {
        min-height: 350px;
    }
    
    .cta-phone-img {
        width: 200px;
    }
    
    .app-cta-thumb-1 {
        transform: rotate(-3deg) translateX(-20px);
    }
    
    .app-cta-thumb-2 {
        transform: rotate(3deg) translateX(20px);
    }
}

/* FAQ Section */
.app-faq-area {
    position: relative;
    padding: 70px 0;
    background: rgba(8, 4, 29, 0.8);
    overflow: hidden;
    z-index: 1;
}

.app-faq-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.faq-shape-bg {
    width: 225px;
    height: 425px;
    background: radial-gradient(circle, rgba(255, 121, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    bottom: -100px;
    left: -50px;
    animation: floatShape 20s ease-in-out infinite;
}

.app-faq-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}


.faq-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.faq-title span {
    font-style: italic;
    color: #999;
    font-weight: 400;
}

.app-faq-wrap {
    position: relative;
    z-index: 2;
    padding-left: 70px;
}

.ai-faq-accordion-wrap {
    width: 100%;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-items {
 background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(103 103 103 / 25%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-items:hover {
    border-color: rgba(255, 121, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}
.accordion-buttons:focus{
        outline: 0 !important;
}
.accordion-header {
    margin: 0;
    padding: 0;
}

.accordion-buttons {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
    z-index: 1;
    pointer-events: auto;
}

.accordion-buttons:not(.collapsed) {
    color: #ff7900;
}

.accordion-buttons:hover {
    color: #ff7900;
}

.accordion-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 121, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 20px;
    position: relative;
}

.accordion-buttons:not(.collapsed) .accordion-icon {
    background: rgba(255, 121, 0, 0.4);
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ff7900;
    stroke-width: 2;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon .icon-plus {
    display: block;
}

.accordion-icon .icon-minus {
    display: none;
}

.accordion-buttons:not(.collapsed) .accordion-icon svg {
    stroke: #ffffff;
}

.accordion-buttons:not(.collapsed) .accordion-icon .icon-plus {
    display: none;
}

.accordion-buttons:not(.collapsed) .accordion-icon .icon-minus {
    display: block;
}

.accordion-collapse {
    transition: max-height 0.4s ease, opacity 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.accordion-collapse.show {
    opacity: 1;
}

.accordion-body {
    padding: 0 30px 25px 30px;
    color:#333;
    font-size: 16px;
    line-height: 1.8;
}

.accordion-body p {
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 1199px) {
    .faq-title {
        font-size: 56px;
    }
    
    .app-faq-wrap {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .app-faq-area {
        padding: 80px 0;
    }
    
    .faq-title,
    .tp-section-title-playfair {
        font-size: 42px;
    }
    
    .app-faq-heading {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .app-faq-wrap {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .faq-title,
    .tp-section-title-playfair {
        font-size: 36px;
    }
    
    .accordion-buttons {
        padding: 20px;
        font-size: 18px;
    }
    
    .accordion-body {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
    
    .accordion-icon {
        width: 25px;
        height: 25px;
    }
    
    .accordion-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Features Section Styles */
.it-feature-area {
    position: relative;
    padding: 120px 0;
    background-color: #FDF7F4;
    overflow: hidden;
    width: 100%;
}

.it-feature-brand-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.it-feature-brand-shape svg {
    width: 100%;
    height: auto;
    display: block;
}

.it-feature-title-box {
    margin-bottom: 70px;
}

.tp-section-subtitle-platform {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tp-section-title-platform {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.tp-section-title-platform span {
    font-style: italic;
    color: #999;
    font-weight: 400;
}

.it-feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.it-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.it-feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.it-feature-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.it-feature-title a:hover {
    color: #ff7900;
}

.it-feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.it-feature-icon img {
    max-width: 100%;
    height: auto;
}

.it-feature-content {
    flex: 1;
    margin-bottom: 25px;
}

.it-feature-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.it-feature-category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.it-feature-category span {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.it-feature-item-style-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 40px;
    min-height: 400px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.it-feature-item-style-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 4, 29, 0.9) 0%, rgba(8, 4, 29, 0.7) 100%);
    z-index: 0;
}

.it-feature-item-style-bg .it-feature-content,
.it-feature-item-style-bg .it-feature-btn-box {
    position: relative;
    z-index: 1;
}

.it-feature-item-style-bg .it-feature-title {
    color: #fff;
    font-size: 32px;
    line-height: 1.3;
}

.tp-btn-black-radius {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.tp-btn-black-radius:hover {
    background: #ff7900;
    color: #fff;
    transform: translateX(5px);
}

.tp-btn-black-radius i {
    display: flex;
    align-items: center;
}

.tp-btn-black-radius i svg {
    width: 10px;
    height: 10px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-70 {
    margin-bottom: 70px;
}

.pb-55 {
    padding-bottom: 55px;
}

.p-relative {
    position: relative;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

/* Responsive Styles for Features */
@media (max-width: 1199px) {
    .tp-section-title-platform {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .tp-section-title-platform {
        font-size: 36px;
    }
    
    .it-feature-item {
        margin-bottom: 30px;
    }
    
    .it-feature-item-style-bg {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .it-feature-area {
        padding: 80px 0;
    }
    
    .tp-section-title-platform {
        font-size: 28px;
    }
    
    .it-feature-item {
        padding: 30px 20px;
    }
    
    .it-feature-title {
        font-size: 20px;
    }
}

/* About Us Section Styles */
.it-about-area {
    position: relative;
    padding: 140px 0 90px;
    background: #fff;
    overflow: hidden;
}

.it-about-shape-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.it-about-shape-1,
.it-about-shape-2 {
    position: absolute;
    z-index: 0;
}

.it-about-shape-2 {
    top: 10%;
    right: 5%;
    max-width: 300px;
    opacity: 0.3;
}

.it-about-title-box {
    position: relative;
    z-index: 2;
}

.it-about-title-box .tp-section-subtitle-platform {
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    display: block;
}

.it-about-title-box .tp-section-title-playfair,
.it-about-title-box .tp-section-title-platform.fs-84 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.it-about-title-box .tp-section-title-playfair span,
.it-about-title-box .tp-section-title-platform.fs-84 span {
    font-style: italic;
    color: #999;
    font-weight: 400;
}

.it-about-title-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.btn-blue-bg {
    background: #ff7900 !important;
    color: #fff !important;
}

.btn-blue-bg:hover {
    background: #e66a00 !important;
    color: #fff !important;
}

.btn-blue-bg i svg path {
    stroke: #fff !important;
}

.it-about-thumb {
    position: relative;
}

.it-about-thumb-inner {
    position: relative;
    margin-bottom: 50px;
}

.it-about-thumb img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.it-about-info-wrap {
    position: absolute;
    top: 50px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.it-about-info-item {
    background: #B8F5B8;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.it-about-info-item[data-bg-color="#DACBFF"] {
    background: #DACBFF;
}

.it-about-info-item i {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.it-about-info-item i span {
    font-size: 48px;
    font-weight: 800;
}

.it-about-info-item p {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

.img-2 {
    margin-bottom: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-140 {
    padding-top: 140px;
}

.pb-90 {
    padding-bottom: 90px;
}

.d-inline-flex {
    display: inline-flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.mr-15 {
    margin-right: 15px;
}

/* Responsive Styles for About Section */
@media (max-width: 1199px) {
    .it-about-title-box .tp-section-title-platform.fs-84 {
        font-size: 64px;
    }
    
    .it-about-area {
        padding: 100px 0 70px;
    }
}

@media (max-width: 991px) {
    .it-about-title-box .tp-section-title-platform.fs-84 {
        font-size: 48px;
    }
    
    .it-about-area {
        padding: 80px 0 60px;
    }
    
    .it-about-thumb {
        margin-bottom: 30px;
    }
    
    .img-2 {
        margin-bottom: 50px;
    }
    
    .it-about-info-wrap {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .it-about-title-box .tp-section-title-platform.fs-84 {
        font-size: 36px;
    }
    
    .it-about-area {
        padding: 60px 0 40px;
    }
    
    .it-about-title-box p {
        font-size: 16px;
    }
    
    .it-about-info-wrap {
        display: none !important;
    }
    
    .it-about-info-item {
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .it-about-info-item i {
        font-size: 36px;
    }
    
    .it-about-info-item i span {
        font-size: 36px;
    }
    
    .it-about-info-item p {
        font-size: 12px;
    }
}

/* Services Section Styles (Recent Work Style) */
.design-project-area {
    position: relative;
    padding: 70px 0 60px;
    background: #fff;
    overflow: hidden;
}

.design-project-title-wrap {
    margin-bottom: 80px;
}

.design-project-title-box h3.tp-section-title-playfair,
.design-project-title-box h4.tp-section-title-dirtyline {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.design-project-title-box h3.tp-section-title-playfair span,
.design-project-title-box h4.tp-section-title-dirtyline span {
    font-style: italic;
    color: #999;
    font-weight: 400;
    display: inline;
}

.design-project-title-box p {
    font-size: 20px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.design-project-btn {
    text-align: right;
}

.tp-btn-sky-border {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tp-btn-sky-border:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.tp-btn-sky-border.height-50 {
    padding: 12px 30px;
    margin-top: 25px;
    display: inline-block;
}

.design-project-item {
    margin-bottom: 80px;
}

.design-project-content {
    position: relative;
    z-index: 2;
}

.design-project-content.pl-200 {
    padding-left: 200px;
}

.design-project-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.design-project-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.design-project-title a:hover {
    color: #ff7900;
}

.design-project-content span {
    display: block;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.design-project-thumb {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-out;
    margin: 0 40px;
}

.design-project-thumb.item-1 {
    transform: rotate(7deg);
}

.design-project-thumb.item-2 {
    transform: rotate(-7deg);
}

.design-project-thumb.rotated-0 {
    transform: rotate(0deg);
}

.design-project-thumb.item-1.rotated-20 {
    transform: rotate(7deg);
}

.design-project-thumb.item-2.rotated-20 {
    transform: rotate(-7deg);
}

.design-project-thumb img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.design-project-thumb:hover img {
    transform: scale(1.05);
}

.design-project-thumb.text-end {
    text-align: right;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-120 {
    margin-bottom: 120px;
}

.pt-200 {
    padding-top: 200px;
}

.pb-60 {
    padding-bottom: 60px;
}

/* Responsive Styles for Services Section */
@media (max-width: 1199px) {
    .design-project-area {
        padding: 150px 0 50px;
    }
    
    .design-project-title-box h4.tp-section-title-dirtyline {
        font-size: 80px;
    }
    
    .design-project-title {
        font-size: 56px;
    }
    
    .design-project-content.pl-200 {
        padding-left: 100px;
    }
}

@media (max-width: 991px) {
    .design-project-area {
        padding: 100px 0 40px;
    }
    
    .design-project-title-wrap {
        margin-bottom: 80px;
    }
    
    .design-project-title-box h4.tp-section-title-dirtyline {
        font-size: 60px;
    }
    
    .design-project-title {
        font-size: 42px;
    }
    
    .design-project-content.pl-200 {
        padding-left: 0;
    }
    
    .design-project-thumb.item-1,
    .design-project-thumb.item-2 {
        transform: rotate(0deg);
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .design-project-area {
        padding: 80px 0 30px;
    }
    
    .design-project-title-wrap {
        margin-bottom: 60px;
    }
    
    .design-project-title-box h4.tp-section-title-dirtyline {
        font-size: 42px;
    }
    
    .design-project-title {
        font-size: 32px;
    }
    
    .design-project-item {
        margin-bottom: 80px;
    }
    
    .design-project-title-box p {
        font-size: 16px;
    }
    
    .design-project-content span {
        font-size: 14px;
    }
}

/* Blog Section Styles */
.st-blog-area {
    position: relative;
    padding: 70px 0 110px;
    background: #FDF7F4;
}

.st-blog-heading {
    margin-bottom: 70px;
}

.tp-section-subtitle.st {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tp-section-title-playfair {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.tp-section-title-playfair span {
    font-style: italic;
    color: #999;
    font-weight: 400;
}

.st-blog-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.tp-btn-border-2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 1px solid #000;
    background: #FDF7F4;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.tp-btn-border-2:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.tp-btn-border-2 span {
    display: flex;
    align-items: center;
}

.tp-btn-border-2 span svg {
    width: 14px;
    height: 14px;
}

.st-blog-item {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.st-blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.st-blog-item-thumb {
    position: relative;
    overflow: hidden;
}

.st-blog-item-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.st-blog-item:hover .st-blog-item-thumb img {
    transform: scale(1.05);
}

.st-blog-item-content {
    padding: 30px;
}

.st-blog-item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.st-blog-item-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.st-blog-item-title a:hover {
    color: #ff7900;
}

.st-blog-item-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.st-blog-item-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: #FDF7F4;
    border-radius: 20px;
    font-weight: 600;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.st-blog-item-tags-devide {
    width: 1px;
    height: 12px;
    background: #ddd;
}

.st-blog-item-tags p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.pb-110 {
    padding-bottom: 110px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Responsive Styles for Blog Section */
@media (max-width: 1199px) {
    .tp-section-title-playfair {
        font-size: 48px;
    }
    
    .st-blog-area {
        padding: 100px 0 90px;
    }
}

@media (max-width: 991px) {
    .tp-section-title-playfair {
        font-size: 36px;
    }
    
    .st-blog-area {
        padding: 80px 0 70px;
    }
    
    .st-blog-heading,
    .st-blog-text {
        margin-bottom: 50px;
    }
    
    .st-blog-item-thumb img {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .tp-section-title-playfair {
        font-size: 28px;
    }
    
    .st-blog-area {
        padding: 60px 0 50px;
    }
    
    .st-blog-item-content {
        padding: 20px;
    }
    
    .st-blog-item-title {
        font-size: 20px;
    }
    
    .st-blog-item-thumb img {
        height: 200px;
    }
    
    .st-blog-text p {
        font-size: 16px;
    }
}
.app-testimonial-area .owl-carousel .owl-stage{
        margin-top: 20px !important;
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Tablet Landscape (max-width: 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .header-wrapper {
        padding: 0 15px;
    }
    
    .header-menu {
        padding: 12px 20px;
    }
    
    .menu-list {
        gap: 25px;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .it-about-area {
        padding: 100px 0 70px;
    }
    
    .design-project-area {
        padding: 100px 0 50px;
    }
    
    .app-cta-area {
        padding: 60px 0;
    }
    
    .app-faq-area {
        padding: 80px 0;
    }
    
    .st-blog-area {
        padding: 80px 0 90px;
    }
}

/* Tablet Portrait (max-width: 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .header-area {
        padding: 15px 0;
    }
    
    .header-menu {
        padding: 10px 18px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .menu-list {
        gap: 20px;
    }
    
    .menu-link {
        font-size: 14px;
    }
    
    .header-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-main-img {
        width: 250px;
        max-width: 250px;
    }
    
    .it-about-area {
        padding: 80px 0 60px;
    }
    
    .it-about-title-box {
        margin-bottom: 40px;
    }
    
    .it-about-thumb {
        margin-bottom: 30px;
    }
    
    .it-feature-area {
        padding: 80px 0;
    }
    
    .it-feature-title-box {
        margin-bottom: 50px;
    }
    
    .design-project-area {
        padding: 80px 0 40px;
    }
    
    .design-project-title-wrap {
        margin-bottom: 60px;
    }
    
    .design-project-item {
        margin-bottom: 60px;
    }
    
    .design-project-thumb {
        margin: 0 20px;
    }
    
    .app-testimonial-area {
        padding: 80px 0;
    }
    
    .app-cta-area {
        padding: 60px 0;
    }
    
    .app-cta-wrapper {
        padding: 40px 0;
    }
    
    .app-cta-title {
        font-size: 42px;
    }
    
    .app-cta-stats {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .app-faq-area {
        padding: 70px 0;
    }
    
    .st-blog-area {
        padding: 70px 0 80px;
    }
    
    .st-blog-heading {
        margin-bottom: 50px;
    }
    
    footer {
        padding: 60px 0 30px;
    }
    
    footer .item {
        margin-bottom: 40px;
    }
}

/* Mobile Landscape (max-width: 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .header-area {
        padding: 12px 0;
    }
    
    .header-wrapper {
        padding: 0 10px;
    }
    
    .header-menu {
        padding: 8px 12px;
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative;
    }
    
    .header-logo {
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.mobile-menu-active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 255, 0.95) 100%);
        backdrop-filter: blur(30px);
        padding: 0;
        flex-direction: column;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        overflow-y: auto;
        animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* RTL override - must come after base rule with higher specificity */
    html[dir="rtl"] .main-nav.mobile-menu-active,
    html[dir="rtl"] nav.main-nav.mobile-menu-active,
    [dir="rtl"] .main-nav.mobile-menu-active,
    [dir="rtl"] nav.main-nav.mobile-menu-active,
    body[dir="rtl"] .main-nav.mobile-menu-active {
        left: auto !important;
        right: 0 !important;
        animation: slideInFromRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    /* Reset base transform for RTL mobile menu */
    @media (max-width: 767px) {
        html[dir="rtl"] .main-nav.mobile-menu-active,
        [dir="rtl"] .main-nav.mobile-menu-active {
            transform: translateX(0) !important;
        }
    }
    
    /* RTL menu slide animation */
    @keyframes slideInFromRight {
        0% {
            transform: translateX(100%);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes slideInFromLeft {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    /* Overlay background when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 9998;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .mobile-menu-logo {
        display: none;
        padding: 30px 25px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        position: relative;
    }
    
    .main-nav.mobile-menu-active .mobile-menu-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeInDown 0.5s ease 0.2s both;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-menu-logo a {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-logo a:hover {
        transform: scale(1.05);
    }
    
    .mobile-menu-logo .logo-img {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(255, 121, 0, 0.2));
    }
    
    .mobile-menu-logo .logo-text {
        font-size: 24px;
        font-weight: 700;
        background: linear-gradient(135deg, #333 0%, #ff7900 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .menu-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        margin: 0;
        padding: 20px 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        animation: fadeInLeft 0.4s ease both;
    }
    
    .menu-item:nth-child(1) { animation-delay: 0.1s; }
    .menu-item:nth-child(2) { animation-delay: 0.2s; }
    .menu-item:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .menu-item:last-child {
        border-bottom: none;
    }
    
    .menu-link {
        font-size: 20px;
        padding: 20px 25px;
        width: 100%;
        color: #333;
        font-weight: 600;
        display: flex;
        align-items: center;
        position: relative;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }
    
    .menu-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, #ff7900 0%, #e66a00 100%);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .menu-link:hover,
    .menu-link.active {
        color: #ff7900;
        background: rgba(255, 121, 0, 0.05);
        padding-left: 30px;
    }
    
    .menu-link:hover::before,
    .menu-link.active::before {
        transform: scaleY(1);
    }
    
    .header-action.desktop-action {
        display: none !important;
    }
    
    .header-action.mobile-menu-action {
        display: none;
        width: 100%;
        padding: 20px 25px;
        margin-top: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        animation: fadeInUp 0.5s ease 0.4s both;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-nav.mobile-menu-active .header-action.mobile-menu-action {
        display: block;
    }
    
    /* RTL: Ensure language button appears below menu links */
    html[dir="rtl"] .main-nav.mobile-menu-active .mobile-menu-logo,
    [dir="rtl"] .main-nav.mobile-menu-active .mobile-menu-logo {
        order: 0;
    }
    
    html[dir="rtl"] .main-nav.mobile-menu-active .menu-list,
    [dir="rtl"] .main-nav.mobile-menu-active .menu-list {
        order: 1;
    }
    
    html[dir="rtl"] .main-nav.mobile-menu-active .header-action.mobile-menu-action,
    [dir="rtl"] .main-nav.mobile-menu-active .header-action.mobile-menu-action {
        order: 2;
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .main-nav.mobile-menu-active .beautiful-dropdown.mobile-dropdown {
        width: 100%;
        max-width: 100%;
    }
    
    .main-nav.mobile-menu-active .beautiful-dropdown-btn.mobile-btn {
        width: 100%;
        justify-content: space-between;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 12px;
        background: #e66a00;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .main-nav.mobile-menu-active .beautiful-dropdown-menu.mobile-menu {
        width: 100%;
        margin-top: 8px;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.mobile-menu-active .header-btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
        transition: all 0.3s ease;
    }
    
    .main-nav.mobile-menu-active .header-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10000;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        background: transparent;
        border: none;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10001;
        transform: none;
    }
    
    .mobile-menu-toggle.active span {
        background: #333;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    /* RTL Support for Mobile Menu */
    html[dir="rtl"] .mobile-menu-toggle,
    [dir="rtl"] .mobile-menu-toggle {
        right: auto;
        left: 12px;
    }
    
    html[dir="rtl"] .mobile-menu-toggle.active,
    [dir="rtl"] .mobile-menu-toggle.active {
        right: auto;
        left: 20px;
    }
    
    html[dir="rtl"] .header-menu,
    [dir="rtl"] .header-menu {
        flex-direction: row-reverse;
    }
    
    html[dir="rtl"] .header-logo,
    [dir="rtl"] .header-logo {
        order: 3;
        margin-left: auto;
        margin-right: 0;
    }
    
    html[dir="rtl"] .header-action.desktop-action,
    [dir="rtl"] .header-action.desktop-action {
        order: 1;
        margin-right: auto;
        margin-left: 0;
    }
    
    html[dir="rtl"] .mobile-menu-toggle,
    [dir="rtl"] .mobile-menu-toggle {
        order: 2;
    }
    
    .hero-section {
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-main-img {
        width: 200px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero-floating-icon {
        display: none;
    }
    
    .it-about-area {
        padding: 60px 0 40px;
    }
    
    .it-about-title-box {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .it-about-info-wrap {
        display: none !important;
    }
    
    .tp-section-title-playfair {
        font-size: 36px;
    }
    
    .tp-section-subtitle {
        font-size: 14px;
    }
    
    .it-feature-area {
        padding: 60px 0;
    }
    
    .it-feature-title-box {
        margin-bottom: 40px;
    }
    
    .it-feature-item {
        margin-bottom: 30px;
    }
    
    .design-project-area {
        padding: 60px 0 30px;
    }
    
    .design-project-title-wrap {
        margin-bottom: 40px;
    }
    
    .design-project-title-box {
        text-align: center;
    }
    
    .design-project-item {
        margin-bottom: 50px;
    }
    
    .design-project-thumb {
        margin: 0 10px 30px 10px;
        transform: rotate(0deg) !important;
    }
    
    .design-project-content {
        text-align: center;
        padding-left: 0 !important;
    }
    
    .app-testimonial-area {
        padding: 60px 0;
    }
    
    .app-testimonial-heading {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .app-cta-area {
        padding: 50px 0;
    }
    
    .app-cta-wrapper {
        padding: 30px 0;
        text-align: center;
    }
    
    .app-cta-title {
        font-size: 32px;
    }
    
    .app-cta-description {
        font-size: 16px;
    }
    
    .app-cta-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .app-stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .app-cta-thumb {
        margin-top: 30px;
    }
    
    .app-cta-thumb-1,
    .app-cta-thumb-2 {
        position: relative;
        transform: rotate(0deg) !important;
        margin: 10px auto;
    }
    
    .app-faq-area {
        padding: 60px 0;
    }
    
    .app-faq-heading {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .st-blog-area {
        padding: 60px 0 70px;
    }
    
    .st-blog-heading {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .st-blog-item {
        margin-bottom: 30px;
    }
    
    footer {
        padding: 50px 0 20px;
    }
    
    footer .row {
        margin: 0;
    }
    
    footer .item {
        margin-bottom: 30px;
        text-align: center;
    }
    
    footer .item h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    footer .item ul {
        list-style: none;
        padding: 0;
    }
    
    footer .item ul li {
        margin-bottom: 10px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .header-menu {
        padding: 8px 12px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-main-img {
        width: 180px;
        max-width: 180px;
                height: 390px;
    }
    
    .tp-section-title-playfair {
        font-size: 28px;
    }
    
    .tp-section-subtitle {
        font-size: 12px;
    }
    
    .app-cta-title {
        font-size: 28px;
    }
    
    .app-cta-description {
        font-size: 14px;
    }
    
    .app-stat-number {
        font-size: 18px;
    }
    
    .app-stat-label {
        font-size: 11px;
    }
    
    .design-project-title {
        font-size: 24px;
    }
    
    .st-blog-item-title {
        font-size: 18px;
    }
    
    .accordion-buttons {
        font-size: 16px;
        padding: 15px;
    }
    
    .accordion-body {
        font-size: 14px;
        padding: 0 15px 15px 15px;
    }
    
    .header-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .app-cta-store-box .download-button img {
        height: 45px;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }
    
    .tp-section-title-playfair {
        font-size: 24px;
    }
    
    .app-cta-title {
        font-size: 24px;
    }
    
    .header-menu {
        padding: 6px 10px;
    }
    
    .logo-text {
        font-size: 14px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .it-about-area,
    .it-feature-area,
    .design-project-area,
    .app-testimonial-area,
    .app-cta-area,
    .app-faq-area,
    .st-blog-area {
        padding: 50px 0;
    }
}

/* Print Styles */
@media print {
    .header-area,
    .mobile-menu-toggle,
    .header-action,
    footer {
        display: none;
    }
    
    .hero-section,
    .it-about-area,
    .it-feature-area,
    .design-project-area {
        page-break-inside: avoid;
    }
}

/* Image Responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Container Responsive */
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 767px) {
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Prevent Horizontal Scroll */
body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Touch-friendly buttons on mobile */
@media (max-width: 767px) {
    button,
    .btn,
    a.header-btn,
    .menu-link {
        min-height: 44px;
        min-width: 44px;
    }
}