html{
  scroll-behavior: smooth; 
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
body {
    margin: 0;
    font-family: Arial, sans-serif;
    cursor: pointer;
    overflow-x: hidden;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#preloader-content {
  text-align: center;
}

#preloader-logo {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: pulse-spin 3s infinite ease-in-out;
}

#welcome-text {
  font-family: "Lucida Handwriting", cursive;
  font-size: 30px;
  color: #333;
  animation: fadeInUp 2s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

/* 
@keyframes pulse-spin {
  0%   { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50%  { transform: scale(1.2) rotate(180deg); opacity: 1; }
  100% { transform: scale(1) rotate(360deg); opacity: 0.7; }
} */

@keyframes pulse-spin {
  0%   { transform: scale(1); opacity: 0.7; }
  50%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.header .container {
  position: relative;
}

.header .right {
  transition: all 0.3s ease;
}

.header {
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  
}


.header .left h2 {
  font-size: 28px;
  color: white; 
  margin: 0;
  font-family: tahoma;
  animation-name: MoveLeftToRight;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
 
}
@keyframes MoveLeftToRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.header .left h2 span {
  color: #FF9C50; 
  font-weight: 100;
}

.header .right ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  animation-name: MoveRightToLeft;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
@keyframes MoveRightToLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.header .right ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.header .right ul li a:hover {
  color: #FF9C50;
}

.banner {
  position: relative;
  overflow: hidden;
  font-family: tahoma;
  color: #fff;
  min-height: 400px;
  padding: 80px 40px;
  z-index: 1;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background-image: url('../images/banner3.jpeg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: flipRight 1s 3s linear forwards;
  transform-origin: center center;
}

@keyframes flipRight {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.banner-left {
  max-width: 50%;
  margin-bottom: 90px;
  animation-name: MoveUpToDown;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
@keyframes MoveUpToDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}




.banner-left .logo {
  font-size: 70px;
  margin-bottom: 30px;
  color: white;
}

.banner-left .logo span {
  color: #FF9C50;
  font-weight: 100;
}

.banner-left .first {
  font-size: 40px;
  font-weight: 100 !important;
  text-transform:uppercase;
}

.banner-left .second {
  font-size: 20px;
}

.underline {
  display: block;
  width: 60px;      
  height: 2px;       
  background-color: #fff; 
  margin-top: 3px;   
  margin-bottom: 10px; 
}

.banner-left button {
  padding: 10px 30px;
  background-color: transparent;
  border: 3px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}

.banner-right .form-box {
  background-color: white;
  padding: 50px;
  border-radius: 5px;
  color: #333;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  animation-name: MoveDownToUp;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
@keyframes MoveDownToUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-box h2 {
  border-radius: 5px;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 50px;
  text-wrap: nowrap;
  background-color: #f2f2f2; 
  padding: 20px 0; 
  margin-left: -50px; 
  margin-right: -50px;
  text-align: center; 
}

.form-box .form-word{
  color: #FF9C50;
  text-transform:uppercase;
}

.form-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-box button {
  width: calc(100% + 100px); 
  font-size: 20px;
  padding: 10px 10px 20px 10px;
  background-color: #FF9C50;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transform: translateX(-50px); 
  border-radius: 0 0 5px 5px; 
}

.social {
  background-color: #f9f9f9;
  padding: 10px 0;
  font-family: Tahoma, sans-serif;
  border-bottom: 2px solid #9c9b9b;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.social .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social .left,
.social .right {
  flex: 1 1 45%;
}

.social .left {
  flex: 1;
  padding-right: 40px;
}

.social .left h2 {
  font-size: 20px;
  color: #333;
  margin: 0 0 5px 0;
}

.social .left p {
  font-size: 15px;
  line-height: 1.4;
  color: #9c9b9b;
  margin: 0 !important;
}

.social .right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.social .right ul {
  list-style: none;
  display: flex;
  gap: 50px !important; 
  padding: 0;
  margin: 0;
  align-items: center; 
}

.social .right ul li a {
  display: flex; 
  align-items: center;
  justify-content: center;
  color: #9c9b9b;
  transition: color 0.3s;
}

.social .right ul li a svg {
  width: 40px;
  height: 40px;
}

.social .right ul li a:hover {
  color: #ff9c50;
}

.taps{
  background-color: #f1f1f1;
}

.taps .container {
  padding: 60px 40px;
  align-items: flex-start;
}
.taps-content-wrapper {
  flex: 1;
  min-width: 0; 
}

.taps-container {
  display: flex;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
}

.taps-menu {
  width: 125px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 5px;
  overflow: hidden;
}

.taps-button {
  background-color: #333;
  color: white;
  padding: 60px 20px;
  border: none;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.taps-button:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.taps-button:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.taps-button:hover {
  background-color: #555;
}

.taps-button.active {
  background-color: #fa8f3d;
  color: white;
}

.taps-content {
  display: none;
  gap: 40px;
  flex: 1;
}

.taps-content.active {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between; 
  flex-wrap: nowrap;
}

.taps-left {
  flex: 1 1 0%; 
  min-width: 0;
  padding-right: 20px;
}

.taps-left .taps-header h2 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 10px;
}

.taps-left .description {
  font-size: 16px;
  color: #929090;
  line-height: 1.4;
  padding-top: 40px;
}

.taps-left .download-btn {
  padding: 15px 30px;
  background-color: #fc750e;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 50px;
  transition: background-color 0.3s;
  border-radius: 5px;
}

.taps-left .download-btn:hover {
  background-color: #e58b45;
}

.taps-right {
  flex: 0 0 auto; 
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}

.taps-right img {
  width: 400px;
  height: 250px;
  display: block;
  max-width: 100%; 
  object-fit: cover;

}

.sub-list {
  background-color: white;
}

.sub-list .container {
  padding: 60px 40px;
  align-items: flex-start;
}

.sub-list-content {
  display: flex;
  gap: 50px;
  width: 100%;
}

.sub-list-left {
  flex: 1.5;
  padding-top: 50px;
}

.sub-list-left img {
  width: 500px;
  height: 300px; 
  display: block;
}

.sub-list-right {
  flex: 1;
}

.sub-list-right .sub-list-header {
  margin-bottom: 20px;
}

.sub-list-right .sub-list-header h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.sub-list-right .orange-underline {
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 30px;
  background-color: #FF9C50;
}

.sub-list-right p {
  font-size: 16px;
  color: #929090;
  line-height: 1.4;
  margin-bottom: 20px;
}

.list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.list-item-icon {
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  padding-bottom: 50px;
}

.list-item-icon svg {
  width: 100%;
  height: 100%;
}

.list-item-content h3 {
  font-size: 18px;
  margin: 0 0 5px 0;
  color: #333;
}

.list-item-content p {
  font-size: 14px;
  color: #929090;
  margin: 0;
}

.sub-picture {
  background-color: #f1f1f1;
}

.sub-picture .container {
  padding: 60px 40px;
  align-items: flex-start;
}

.sub-picture-content {
  display: flex;
  gap: 50px;
  width: 100%;
  flex-direction: row-reverse;
}

.sub-picture-right {
  flex: 1.5;
  padding-top: 30px;
}

.sub-picture-right img {
  width: 500px;
  height: 300px; 
  display: block;
  margin-left: auto;
}

.sub-picture-left {
  flex: 1;
}

.sub-picture-left .sub-picture-header {
  margin-bottom: 20px;
}

.sub-picture-left .sub-picture-header h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.sub-picture-left .orange-underline {
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 30px;
  background-color: #FF9C50;
}

.sub-picture-left p {
  font-size: 16px;
  color: #929090;
  line-height: 1.4;
  margin-bottom: 20px;
}

.awesome-section {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
}
.awesome-section .container {
  display: block;
}
.awesome-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.awesome-header .orange-underline {
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FF9C50;
}
.awesome-header h2 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: 30px;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 10px;
  font-weight: 400;
  font-style: normal;
}
.awesome-header p {
  font-size: 16px;
  color: #929090;
  line-height: 1.4;
}
.awesome-items {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.awesome-item {
  text-align: center;
  max-width: 300px;
}
.awesome-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}
.awesome-item h3 {
  font-size: 18px;
  color: #333;
  margin: 0 0 10px;
  padding-top: 20px;
}
.awesome-item p {
  font-size: 14px;
  color: #929090;
  line-height: 1.4;
}


.case-studies-section {
  background-color: #f1f1f1;
  padding: 60px 20px;
  font-family: Tahoma, sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.case-studies-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column; 
  align-items: center;
}

.case-studies-header {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.case-studies-header h2 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: 30px;
  text-transform: uppercase;
  color: #333;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}

.underline-wrap {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.case-studies-header .orange-underline {
  display: block;
  width: 60px;
  height: 2px;
  background-color: #FF9C50;
  margin: 0 auto;
}


.case-studies-header .hover-note {
  position: absolute;
  top: 100%; 
  right: 0; 
  margin-bottom: 0;
  margin-top: 0;
  font-size: 14px;
  font-weight: 500;
  color: #ff6600;
  background: rgba(255, 240, 230, 0.95);
  padding: 6px 12px;
  border-radius: 8px;
  animation: bounceUpDown 2s ease-in-out infinite; 
  font-family: "Raleway", sans-serif;
  border: 1px solid #ffa366;
  box-shadow: 0 0 6px rgba(255, 153, 0, 0.3);
  white-space: nowrap;
  margin-left: initial !important; 
}



.hover-note i {
  margin-right: 8px;
  color: #ff6600;
}
@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.case-studies-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.case-card {
  width: 250px;
  height: 250px;
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
}

.case-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card-front img,
.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-back {
  transform: rotateY(180deg);
}



.products .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;
}

.product-header {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  margin-bottom: 40px;
}

.product-header .orange-underline {
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FF9C50;
}
.product-header .hover-note {
  position: absolute;
  top: 100%; 
  right: 0; 
  margin-bottom: 0;
  margin-top: 0;
  font-size: 14px;
  font-weight: 500;
  color: #ff6600;
  background: rgba(255, 240, 230, 0.95);
  padding: 6px 12px;
  border-radius: 8px;
  animation: bounceUpDown 2s ease-in-out infinite;
  font-family: "Raleway", sans-serif;
  border: 1px solid #ffa366;
  box-shadow: 0 0 6px rgba(255, 153, 0, 0.3);
  white-space: nowrap;
}

.product-header h2{
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: 30px;
  text-transform: uppercase;
  color: #333;
  font-weight: 400;
  font-style: normal;
}

.item {
  width: 23%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.product-top {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.product-image-container {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  height: 100%;
}

.item:hover .product-image-container {
  transform: rotateY(180deg);
}

.product-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-bottom: 1px solid #eee;
}

.product-image-container .front-image {
  transform: rotateY(0deg);
}

.item:hover .product-image-container .front-image {
  opacity: 0;
}

.product-image-container .back-image {
  transform: rotateY(180deg);
}

.product-top:hover .back-image {
  opacity: 1;
}

.product-top .icons {
  z-index: 10;
}

.icons {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.product-top:hover .icons {
  opacity: 1;
}

.icon-wrapper {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.95);
  border-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.icon-wrapper:hover {
  transform: scale(1.1);
  background-color: #f0f0f0;
}

.icon-wrapper i {
  font-size: 16px;
  color: #fff;
  transition: color 0.3s ease;
}

.icon-wrapper:hover i {
  color: #fd913f;
}

.Sale {
  position: absolute;
  top: 2px;
  right: 15px;
  background: red;
  color: white;
  padding: 3px 11px;
  font-size: 20px;
  border-radius: 3px;
}

.product-bottom {
  padding: 15px;
  text-align: center;
}

.product-bottom h3 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.product-bottom p {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.price del {
  color: #aaa;
  margin-right: 8px;
}

.price span {
  color: #e60000;
  font-weight: bold;
}

.pricing-section {
  padding: 60px 0;
  background-color: #f1f1f1;
}

.pricing-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-header {
  text-align: center;
  max-width: 600px;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  color: #333;
  margin-bottom: 10px;
}

.pricing-header .orange-underline {
  display: block;
  width: 60px;
  height: 2px;
  margin: 10px auto 20px;
  background-color: #ff9c50;
}

.pricing-header p {
  font-size: 14px;
  color: #929090;
}

.pricing-table {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
}

.price-box {
  background-color: #fff;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1;
}

.price-box:not(:first-child) {
  border-left: none;
}

.price-box:first-child {
  border-right: none;
}

.price-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.price-header {
  background-color: #333;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  position: relative;
}

.price-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}

.price-box.recommended .price-header {
  background-color: #333;
  padding-top: 10px;
  border: none !important;
}

.price-body {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  border-bottom: 5px solid #ff9c50;
  position: relative;
}

.most-popular-tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fd913f;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 0;
  text-transform: uppercase;
  transform: translateY(100px);
  z-index: 10;
}

.price-box.recommended .price-body {
  background-color: #333;
  border-top: none !important;
}

.price-value {
  display: block;
  font-size: 50px;
  font-weight: bold;
}

.price-box.basic .price-value,
.price-box.enterprise .price-value {
  color: #fff;
}

.price-box.recommended .price-value {
  color: #fff;
}

.price-subtitle {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #ece3e3;
  margin-top: 5px;
  font-style: italic;
}

.price-box.recommended .price-subtitle {
  color: #f1f1f1;
  margin-bottom: 5px;
}

.features-list ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.features-list li {
  padding: 15px;
  font-size: 13px;
  color: #929090;
  border-bottom: 1px solid #eee;
  text-align: center; 
  text-wrap: nowrap;
}

.features-list li:last-child {
  border-bottom: none;
}

.price-box.recommended .features-list li {
  color: #929090;
}

.price-box.recommended {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.testimonials-section {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.testimonials-section .container {
  display: block;
}
.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.testimonials-header h2 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  color: #333;
  margin: 0 0 5px;
}
.testimonials-header .orange-underline {
  display: block;
  width: 60px;
  height: 2px;
  margin: 10px auto 20px;
  background-color: #ff9c50;
}
.testimonials-header p {
  font-size: 16px;
  color: #929090;
  line-height: 1.4;
}
.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: left;
}
.testimonial-text {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
}
.testimonial-text::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #f1f1f1;
}
.testimonial-text p {
  margin: 0;
  font-size: 14px;
  color: #929090;
  line-height: 1.4;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
}
.author-info p {
  margin: 0;
  font-size: 14px;
  color: #ff9c50;
}

.banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  z-index: 1;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}

.banner-content-inner {
  max-width: 600px;
  margin: 0 auto;
}

.banner-content-inner h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.banner-underline {
  display: block;
  width: 60px;
  height: 2px;
  background-color: white;
  margin: 10px auto 20px;
}

.banner-content-inner p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  text-wrap: nowrap;
  color:#9c9b9b;
}

.banner-download-btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-download-btn:hover {
  background-color: white;
  color: #333;
}

.contact-section {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-header {
  margin-bottom: 50px;
}

.contact-header h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #333;
}

.contact-header .orange-underline {
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ff9c50;
  margin: 10px auto 20px;
}

.contact-header p {
  font-size: 16px;
  color: #929090;
  line-height: 1.4;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%; 
}

.form-row {
  display: flex;
  justify-content: space-between; 
  width: 100%;
  text-align: left;
}

.form-column-left,
.form-column-right {
  flex: 1; 
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-column-left {
  margin-right: 50px; 
}

.form-column-right {
  margin-left: 50px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff9c50;
}

.contact-form textarea {
  flex: 1;
  min-height: 180px;
  resize: vertical;
}

.contact-form .send-message-btn {
  background-color: #fc8d38;
  color: white;
  border: none;
  padding: 15px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 200px;
  margin: 20px auto 0;
  border-radius: 5px;
}

.contact-form .send-message-btn:hover {
  background-color: #e58a44;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 30px 0 15px;
  text-align: center;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social ul li a {
  color: #9c9b9b;
  font-size: 24px;
  transition: color 0.3s ease;
}

.footer-social ul li a svg {
  width: 25px;
  height: 25px; 
}

.footer-social a:hover {
  color: #fff;
}

.footer-copy p {
  margin: 0;
  font-size: 14px;
  color: #9c9b9b;
}
.product-indicator-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.product-hint {
  background-color: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 8px;
  margin-right: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  animation: floatHint 1.5s ease-in-out infinite alternate;
  font-family: 'Segoe UI', sans-serif;
}

@keyframes floatHint {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-5px);
  }
}

.scroll-to-products {
  width: 60px;
  height: 60px;
  background-color: #ff5e3a;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.scroll-to-products:hover {
  background-color: #e94e29;
  transform: scale(1.1);
}

#scrollToTopBtn {
  width: 60px;
  height: 60px;
  background-color: #555;
  color: white;
  border: none;
  border-radius: 50%;
  margin-top: 10px;
  font-size: 22px;
  cursor: pointer;
  display: none; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #222;
  transform: scale(1.1);
}


/* 
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  #preloader-logo {
    width: 250px;
    height: 250px;
  }
  
  .header .right ul {
    position: fixed;
    top: 70px;
    left: 0;
    background: #000;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 1000;
  }
  
  .header .right.active ul {
    transform: translateY(0);
  }
  
  .header .right {
    position: relative;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }
  
  .header .right::before,
  .header .right::after,
  .header .right span {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .header .right::before {
    top: 0;
  }
  
  .header .right::after {
    bottom: 0;
  }
  
  .header .right span {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .header .right.active::before {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .header .right.active::after {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .header .right.active span {
    opacity: 0;
  }
  
  .products .container {
    flex-direction: column;
    align-items: center;
  }
  
  .item {
    width: 90%;
    margin-bottom: 20px;
  }
  
  .banner-right .form-box {
    width: 100%;
    padding: 30px;
  }
  
  .banner-left .logo {
    font-size: 50px;
  }
  
  .banner-left .first {
    font-size: 28px;
  }
  
  .taps-content {
    flex-direction: column;
  }
  
  .taps-menu {
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .taps-button {
    padding: 15px;
    flex: 1;
  }
  
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }
  
  .price-box {
    width: 90%;
    margin-bottom: 30px;
  }
  
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-column-left,
  .form-column-right {
    margin: 0;
    width: 100%;
  }
  
  .social .right ul {
    gap: 20px !important;
  }
  
  .banner-left .second,
  .banner-content-inner p {
    white-space: normal;
    text-wrap: pretty;
  }
} */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    overflow-y: hidden;
  }
  
  #preloader-logo {
    width: 250px;
    height: 250px;
  }
  
  .header .right {
    position: relative;
  }
  
  .header .right ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 60%;
    background: #111; 
    flex-direction: column;
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: right;
    gap: 0;
    transition: 0.5s ease-in-out;
    z-index: 100;
    box-shadow: -2px 0 10px rgba(0,0,0,0.4);
    border-left: 3px solid #FF9C50;
  }
  
  .header .right ul li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #333;
    margin: 0;
  }

  .header .right ul li:last-child {
    border-bottom: none;
    
  }
  
  .header .right ul li a {
    display: block;
    width: 100%;
    padding: 30px 0;
    padding-right: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
  }
  
  .header .right ul li a:hover {
    background-color: #FF9C50;
    color: #000;
  }
  
  
  .menu-toggle {
    display: block !important;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
    margin-left: auto;
  }
  
  .menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  .menu-toggle span:nth-child(1) { top: 0; }
  .menu-toggle span:nth-child(2) { top: 8px; }
  .menu-toggle span:nth-child(3) { top: 16px; }
  
  .header.active .right ul {
    right: 0;
  }
  
  .header.active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  
  .header.active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .header.active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
  }
  .underline{
    margin-right: auto;
    margin-left: auto;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-left {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .banner-left .logo {
    font-size: 50px;
  }
  
  .banner-left .first {
    font-size: 28px;
  }
  
  .banner-right .form-box {
    padding: 0 ;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
  }

  
  .banner-right .form-box h2 {
    margin: 0 0 30px 0;
    padding: 20px;
    width: 100%;
    text-align: center;
    background-color: #f2f2f2;
    border-radius: 5px 5px 0 0;
  }
  
  .banner-right .form-box input {
    width: 80% !important;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .banner-right .form-box button {
    width: 100%;
    margin-top: auto;
    padding: 12px;
    font-size: 18px;
    border-radius: 0 0 5px 5px;
    background-color: #FF9C50;
    color: #fff;
    border: none;
    transform: none;
  }
  
  

  .social .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social .left,
  .social .right {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .social .left {
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .social .right ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
  }

  .social .right ul li {
    list-style: none;
  }

  .social .right svg {
    width: 40px;
    height: 40px;
  }

  .taps-container {
    flex-direction: column;
  }
  
  .taps-menu {
    width: 100%;
    flex-direction: row;
    margin-bottom: 30px;
  }
  
  .taps-button {
    padding: 20px 10px;
    flex: 1;
  }
  
  .taps-content {
    flex-direction: column;
  }
  
  .taps-right img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .sub-list-content,
  .sub-picture-content {
    flex-direction: column;
  }
  
  .sub-list-left img,
  .sub-picture-right img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  
  .list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .list-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
  }

  .list-item-icon svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .list-item-content {
    flex: 1;
  }

  .products .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .item {
    width: 30%; 
    min-width: 100px;
    margin-bottom: 20px;
  }
  

  .item:nth-child(2n) {
    margin-right: 0;
  }

  .case-card {
    flex: 0 0 calc(33.333% - 20px); 
    height: 200px;
  }
  
.case-studies-header .hover-note {
  position: absolute;
  top: 100%; 
  right: 0; 
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 500;
  color: #ff6600;
  background: rgba(255, 240, 230, 0.95);
  padding: 6px 6px;
  border-radius: 8px;
  animation: bounceUpDown 2s ease-in-out infinite; 
  font-family: "Raleway", sans-serif;
  border: 1px solid #ffa366;
  box-shadow: 0 0 6px rgba(255, 153, 0, 0.3);
  white-space: nowrap;
  margin-left: initial !important; 
}

.product-header .hover-note {
  position: absolute;
  top: 100%; 
  right: 0; 
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 500;
  color: #ff6600;
  background: rgba(255, 240, 230, 0.95);
  padding: 6px 6px;
  border-radius: 8px;
  animation: bounceUpDown 2s ease-in-out infinite; 
  font-family: "Raleway", sans-serif;
  border: 1px solid #ffa366;
  box-shadow: 0 0 6px rgba(255, 153, 0, 0.3);
  white-space: nowrap;
  margin-left: initial !important; 
}

  
  .product-top {
    height: 200px;
  }

  /* .pricing-table {
    flex-direction: column;
    align-items: center;
  }
  
  .price-box {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
  } */

 

  .pricing-table {
    flex-wrap: wrap;
    gap: 20px; 
  }

  .price-box {
    flex: 0 0 calc(50% - 10px);
    max-width: none;
  }

  .box-basic {
    order: 1;
  }

  .box-enterprise {
    order: 2; 
  }

  .box-professional {
    order: 3; 
    flex: 0 0 100%; 
    margin: 0 auto;
    max-width: 300px; 
    transform: none !important; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important; 
  }

  .price-box.recommended {
    transform: scale(1); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    z-index: 1; 
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    flex-direction: column;
  }
  
  .form-column-left,
  .form-column-right {
    margin: 0;
  }

  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  .container {
    padding: 20px;
  }
  
  * {
    box-sizing: border-box;
  }
  .banner-left .second,
  .banner-content-inner p {
    white-space: normal;
    text-wrap: pretty;
  }
}

@media (max-width: 480px) {
  .case-card {
    flex: 0 0 calc(50% - 15px); 
    height: 150px;
  }
 
  .products .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 4%;
  }

  .item {
    width: 48%; 
    margin: 1% 0;
  }
  .underline{
    margin-right: auto;
    margin-left: auto;
  }
  
  .pricing-table {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.price-box {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    width: auto;
}

.price-box li{
font-size: 10px;
}

.price-box .box-basic {
    order: 1;
}

.price-box .box-enterprise {
    order: 2;
}

.price-box .box-professional {
    order: 3;
    flex: 0 0 100%;
    max-width: 300px;
    margin-top: 20px;
}

.price-box.recommended {
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
  
  .social .left{
    max-width: 400px;
    margin-right: auto;
    margin-left: auto; 
  }
}
