/* START IMPORT FILES & URLS */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

@font-face {
  font-family: 'DroidArabicKufi';
  src: url('/../assets/fonts/DroidArabicKufi.ttf') format('truetype');
}

.custom-font {
  font-family: 'DroidArabicKufi';
}

/* END IMPORT FILES & URLS */
/* ******************** */
/* START GLOBAL SETTINGS */
:root {
  --primary-color: #602afc;
  --secondary-color: #602afc50;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: 'Tajawal', sans-serif;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* END GLOBAL SETTINGS */
/* ******************** */
/* Custom Styles */
.gradient-bg {
  background: linear-gradient(135deg, #602afc 0%, #8b5cf6 50%, #a855f7 100%);
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.check-icon {
  color: var(--primary-color);
}

.star-rating {
  color: #fbbf24;
}

.testimonial-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(96, 42, 252, 0.1);
}

.social-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(96, 42, 252, 0.2);
}

.btn-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(96, 42, 252, 0.3);
}

.logo-line {
  width: 12px;
  height: 60px;
  background: var(--primary-color);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.cta-arrow {
  transform: rotate(45deg);
  margin-inline-end: 8px;
}



/*Animation*/
.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}