@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cairo:wght@300;400;500;600;700&display=swap');

/* Start Global Rules  */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
:root {
  --main-color: #2563eb;
  --main-color-alt: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --warning-color: #f97316;
  --section-background: #f8fafc;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --main-transition: 0.3s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
  --font-primary: 'Cairo', sans-serif;
  --font-secondary: 'Inter', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: 1.6;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Sanll  */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium  */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large  */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.main-title {
  margin: 0 auto 80px;
  border: 2px solid #000;
  padding: 10px 20px;
  width: fit-content;
  font-size: 36px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .main-title {
    font-size: 28px;
    font-weight: 600;
  }
}
.main-title::after,
.main-title::before {
  content: "";
  height: 12px;
  width: 12px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.main-title::before {
  right: -30px;
}
.main-title::after {
  left: -30px;
}
.main-title:hover::before {
  z-index: -1;
  animation: right-move 0.5s linear forwards;
}
.main-title:hover::after {
  z-index: -1;
  animation: left-move 0.5s linear forwards;
}
.main-title:hover {
  color: white;
  border-color: white;
  transition-delay: 0.5s;
}
/* End Global Rules  */

/* Start Header  */
.header {
  background: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.header .logo {
  font-size: 28px;
  font-weight: 700;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header .logo:hover {
  transform: scale(1.05);
}
@media (max-width: 786px) {
  .header .logo {
    width: 100%;
    height: 50px;
    font-size: 24px;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .landing .text h1 {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .landing .text p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .main-title {
    font-size: 20px;
    font-weight: 600;
  }
  
  .features .box h2 {
    font-size: 20px;
  }
  
  .features .box p {
    font-size: 13px;
  }
  
  .testimonials .box h3 {
    font-size: 18px;
  }
  
  .testimonials .box p {
    font-size: 13px;
  }
  
  .team .box .info h3 {
    font-size: 18px;
  }
  
  .team .box .info p {
    font-size: 13px;
  }
  
  .services .container .box h3 {
    font-size: 18px;
  }
  
  .work-steps .container .info .box .text h3 {
    font-size: 18px;
  }
  
  .work-steps .container .info .box .text p {
    font-size: 13px;
  }
  
  .events .title {
    font-size: 20px;
  }
  
  .events .description {
    font-size: 13px;
  }
  
  .pricing .box .title {
    font-size: 18px;
  }
  
  .pricing .box .price .amount {
    font-size: 32px;
  }
  
  .footer .box h3 {
    font-size: 20px;
  }
  
  .box .links li {
    font-size: 13px;
  }
  
  .header .main-nav > li > a {
    font-size: 13px;
  }
  
  .header .logo {
    font-size: 20px;
  }
}
.header .main-nav {
  display: flex;
}

.header .main-nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  padding: 0 30px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 5px;
}
@media (max-width: 786px) {
  .header .main-nav {
    margin: auto;
  }
  .header .main-nav > li > a {
    padding: 10px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
  }
}
.header .main-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header .main-nav > li > a::after {
    bottom: 0;
  }
}
.header .main-nav > li > a:hover {
  color: var(--main-color);
  background-color: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

/* Ensure mega menu is hidden by default and only shows on specific hover */
.header .mega-menu {
  display: none;
}

.header .main-nav > li.mega-menu-parent:hover .mega-menu {
  display: flex;
  z-index: 100;
  opacity: 1;
  top: calc(100% + 1px);
  pointer-events: auto;
}
.header .main-nav > li > a:hover::after {
  width: 100%;
}
.header .mega-menu {
  position: absolute;
  width: 100%;
  left: 0;
  padding: 30px;
  background-color: white;
  border-bottom: 3px solid var(--main-color);
  z-index: -1;
  align-items: center;
  gap: 40px;
  top: calc(100% + 50px);
  transition: top var(--main-transition), opacity var(--main-transition);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .header .mega-menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
    padding: 10px;
  }
}
.header .mega-menu .image img {
  max-width: 100%;
}
@media (max-width: 991px) {
  .header .mega-menu .image {
    display: none;
  }
}
.header .mega-menu .links {
  min-width: 250px;
  flex: 1;
}
@media (max-width: 767px) {
  .header .mega-menu .links {
    width: 100%;
  }
}
.header .mega-menu .links li {
  position: relative;
}

.header .mega-menu .links li:not(:last-child) {
  border-bottom: 1px solid #e9e6e6;
}
@media (max-width: 767px) {
  .header .mega-menu .links:first-of-type li:last-child {
    border-bottom: 1px solid #e9e6e6;
  }
}
.header .mega-menu .links li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  background-color: #fafafa;
  transition: var(--main-transition);
}
.header .mega-menu .links li:hover::before {
  width: 100%;
}
.header .mega-menu .links li a {
  color: var(--main-color);
  padding: 15px;
  display: block;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .header .mega-menu .links li a {
    font-size: 14px;
    font-weight: 500;
  }
}
.header .mega-menu .links li a i {
  margin-left: 10px;
}
/* End Header  */
/* Start Landing  */
.landing {
  position: relative;
  background: white;
  overflow: hidden;
}

.landing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  z-index: -1;
}
.landing .container {
  min-height: calc(100vh - 72px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .landing .container {
    min-height: calc(100vh - 90px);
  }
  
  .landing .text h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .landing .text p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .main-title {
    font-size: 24px;
    font-weight: 600;
  }
  
  .features .box h2 {
    font-size: 24px;
  }
  
  .features .box p {
    font-size: 14px;
  }
  
  .testimonials .box h3 {
    font-size: 20px;
  }
  
  .testimonials .box p {
    font-size: 14px;
  }
  
  .team .box .info h3 {
    font-size: 20px;
  }
  
  .team .box .info p {
    font-size: 14px;
  }
  
  .services .container .box h3 {
    font-size: 20px;
  }
  
  .work-steps .container .info .box .text h3 {
    font-size: 20px;
  }
  
  .work-steps .container .info .box .text p {
    font-size: 14px;
  }
  
  .events .title {
    font-size: 24px;
  }
  
  .events .description {
    font-size: 14px;
  }
  
  .pricing .box .title {
    font-size: 22px;
  }
  
  .pricing .box .price .amount {
    font-size: 36px;
  }
  
  .footer .box h3 {
    font-size: 24px;
  }
  
  .box .links li {
    font-size: 14px;
  }
}
.landing .text {
  flex: 1;
}
@media (max-width: 991px) {
  .landing .text {
    text-align: center;
  }
}
.landing .text h1 {
  font-size: 4rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}


@media (max-width: 991px) {
  .landing .text h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}
.landing .text p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin: 2rem 0;
  color: var(--text-secondary);
  max-width: 500px;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.3s both;
}
@media (max-width: 991px) {
  .landing .text p {
    margin: 25px auto;
    font-size: 18px;
    line-height: 1.5;
  }
}

.landing .btn-primary {
  background: linear-gradient(45deg, var(--accent-color), #f97316);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.landing .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
  background: linear-gradient(45deg, #f97316, var(--accent-color));
}
.landing .go-down {
  color: var(--main-color);
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%);
  transition: var(--main-transition);
}
.landing .go-down i {
  animation: bouncing 1.5s infinite;
}
.landing .image img {
  width: 600px;
  position: relative;
}


@media (max-width: 991px) {
  .landing .image img {
    display: none;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .landing .image img {
    width: 500px;
  }
}
/* End Landing  */
/* Start Article   */
.article {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.article .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.article .box {
  background: white;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.article .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.article .box:hover::before {
  transform: scaleX(1);
}
.article .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.article .box img {
  width: 100%;
  max-width: 100%;
}
.article .box .content {
  padding: 20px;
}
.article .box .content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.article .box .content p {
  margin: 10px 0 0;
  line-height: 1.6;
  font-size: 15px;
  color: #777;
  font-weight: 400;
}
.article .box .info {
  padding: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article .box .info a {
  color: var(--main-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(37, 99, 235, 0.1);
}

.article .box .info a:hover {
  background: var(--main-color);
  color: white;
  transform: translateY(-2px);
}
.article .box .info i {
  color: var(--main-color);
}
.article .box:hover .info i {
  animation: moving-arrow 0.7s linear infinite;
}
/* End Article  */

/* Start Dallery  */
.gallery {
  background-color: var(--section-background);
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.gallery .box {
  padding: 15px;
  background-color: white;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
    0px 2px 4px 0px rgb(0 0 0 / 12%);
}
.gallery .box .image {
  position: relative;
  overflow: hidden;
}
.gallery .box .image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: hwb(0deg 100% 0% / 20%);
  width: 10px;
  height: 10px;
  opacity: 0;
  z-index: 2;
}
.gallery .box .image:hover::before {
  animation: flashing 0.5s;
}
.gallery .box .image img {
  max-width: 100%;
  width: 100%;
  transition: var(--main-transition);
}
.gallery .box .image:hover img {
  transform: rotate(5deg) scale(1.1);
}
/* End Dallery  */
/* Start Features  */
.features {
  background-color: white;
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.features .box {
  text-align: center;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.features .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.features .box:hover::before {
  transform: scaleX(1);
}

.features .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.features .box:hover .img-holder::after {
  border-width: 0px 490px 229px 0;
  border-color: transparent transparent #fff transparent;
}
.features .box .img-holder {
  position: relative;
}
.features .box .img-holder::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.features .time .img-holder::before {
  background-color: hwb(0deg 0% 0% / 37%);
}
.features .qulite .img-holder::before {
  background-color: hwb(177.23deg 0% 0% / 37%);
}
.features .profa .img-holder::before {
  background-color: #004cffb1;
}
.features .box .img-holder::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-style: solid;
  border-width: 0px 0px 200px 500px;
  border-color: transparent transparent #fff transparent;
  transition: var(--main-transition);
}
.features .box .img-holder img {
  width: 100%;
}
.features .box h2 {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.3;
}
.features .box h2::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -15px;
  height: 5px;
  width: calc(100% - 10px);
}
.features .time h2::after {
  background-color: hwb(0deg 0% 0% / 100%);
}
.features .qulite h2::after {
  background-color: hwb(177.23deg 0% 0% / 100%);
}
.features .profa h2::after {
  background-color: #185dff;
}
.features .box p {
  padding: 25px;
  max-width: 30px 15px;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}
.features .box a {
  font-size: 18px;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid;
  border-radius: 12px;
  margin: 0 auto 30px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features .box a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.features .box:hover a {
  background-position: left bottom;
  color: #fff;
}
.features .time a {
  color: hwb(0deg 0% 0% / 100%);
  border-color: hwb(0deg 0% 0% / 100%);
}
.features .time a {
  color: #ff0000;
  border-color: #ff0000;
  background: linear-gradient(to right, #ff0000 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
.features .qulite a {
  color: #00fff3;
  border-color: #00fff3;
  background: linear-gradient(to right, #00fff3 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
.features .profa a {
  color: #185dff;
  border-color: #185dff;
  background: linear-gradient(to right, #185dff 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}
/* End Features  */
/* Start Testimonials  */
.testimonials {
  background-color: var(--section-background);
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.testimonials .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.testimonials .box {
  background-color: #fff;
  padding: 20px;
  position: relative;
  box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
  border-radius: 6px;
}
.testimonials .box img {
  position: absolute;
  top: -30px;
  left: -10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid var(--section-background);
}
.testimonials .box h3 {
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.3;
}
.testimonials .box .title {
  color: #777;
  display: block;
  margin-bottom: 10px;
}
.testimonials .box .rate .filled {
  color: #ffc107;
}
.testimonials .box p {
  line-height: 1.6;
  color: #777;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
}
/* End Testimonials  */
/* Start Team Members  */
.team {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.team .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.team .box {
  position: relative;
}
.team .box::before,
.team .box::after {
  content: "";
  position: absolute;
  background-color: #f3f3f3;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 10px;
  transition: var(--main-transition);
}
.team .box::before {
  width: calc(100% - 60px);
  z-index: -2;
}
.team .box::after {
  width: 0;
  z-index: -1;
  background-color: #e4e4e4;
}
.team .box:hover::after {
  width: calc(100% - 60px);
}
.team .box .data {
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.team .box .data img {
  width: calc(100% - 60px);
  transition: var(--main-transition);
  border-radius: 10px;
}
.team .box:hover img {
  filter: grayscale(100%);
}
.team .box .data .social {
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.team .box .social a {
  width: 60px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-self: center;
}
.team .box .social a:hover i {
  color: var(--main-color);
}
.team .box .social i {
  color: #777;
  transition: var(--main-transition);
}
.team .box .info {
  padding-right: 80px;
}
.team .box .info h3 {
  color: var(--main-color);
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  transition: var(--main-transition);
}
.team .box:hover .info h3 {
  color: #777;
}
.team .box .info p {
  margin-top: 10px;
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .team .box::before {
    width: 100%;
  }
  .team .box:hover::after {
    width: 100%;
  }
  .team .box .info {
    padding-right: 0;
    text-align: center;
  }
  .team .box .info h3 {
    font-size: 30px;
  }
  .team .box .info p {
    font-size: 20px;
    margin: 22px 0 30px;
  }
  .team .box .data {
    display: flex;
    flex-direction: column;
  }
  .team .box .data img {
    width: 90%;
  }
  .team .box .data .social {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin-top: 25px;
  }
  .team .box .social a {
    font-size: 25px;
  }
}
/* End Team Members  */
/* Start Services  */
.services {
  background-color: var(--section-background);
  padding-bottom: var(--main-padding-bottom);
  padding-top: var(--main-padding-top);
  counter-reset: services;
  position: relative;
}
.services::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
  background-image: linear-gradient(135deg, white 25%, transparent 25%),
    linear-gradient(225deg, white 25%, transparent 25%);
  background-size: 30px 30px;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.services .container .box {
  position: relative;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--main-transition);
  box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
}
.services .container .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translatex(-50%);
  height: 3px;
  width: 0;
  background-color: var(--main-color);
  transition: var(--main-transition);
}
.services .container .box:hover::before {
  width: 100%;
}
.services .container .box:hover {
  transform: translateY(-10px);
}
.services .container .box i {
  display: block;
  text-align: center;
  color: #d1cfcf;
  margin: 20px 0 30px;
}
.services .container .box h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--main-color);
  margin: 30px 0 30px;
  line-height: 1.3;
}
.services .container .box .info {
  padding: 15px;
  background-color: #f9f9f9;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  overflow: hidden;
}
.services .container .box .info a {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
}
.services .container .box .info ::before {
  position: absolute;
  counter-increment: services;
  content: "0" counter(services);
  right: 0;
  bottom: 0;
  background-color: var(--main-color);
  height: 100%;
  width: 100px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  padding-left: 18px;
}
.services .container .box .info ::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100px;
  background-color: #d1cfcf;
  width: 60px;
  height: calc(100% + 0.4px);
  transform: skewX(-30deg);
}
/* End Services  */
/* Start Our Skills  */
.our-skills {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.our-skills .container {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .our-skills .container {
    flex-direction: column;
  }
  .our-skills .container img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .our-skills .container .skills {
    width: 50%;
  }
}
.our-skills .container img {
  width: 50%;
  max-width: 100%;
}
.our-skills .container .skills {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.our-skills .container .skills .skill h3 {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}
.our-skills .container .skills .skill h3 span {
  font-size: 12px;
  border: 1px solid #ddd;
  padding: 3px;
  border-radius: 8px;
  color: var(--main-color);
}
.our-skills .container .skills .the-progress {
  background-color: var(--section-background);
  height: 30px;
  position: relative;
}
.our-skills .container .skills .the-progress span {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--main-color);
  height: 100%;
}
/* End Our Skills  */
/* Start Work Steps  */
.work-steps {
  background-color: var(--section-background);
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.work-steps .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .work-steps .container {
    flex-direction: column;
  }

  .work-steps .container .info .box {
    flex-direction: column;
    text-align: center;
  }
}
.work-steps .container img {
  max-width: 100%;
  margin-left: 100px;
}
@media (max-width: 991px) {
  .work-steps .container img {
    margin: 0 0 50px;
  }
}
.work-steps .container .info .box {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.work-steps .container .info .box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--section-background);
  width: 0;
  height: 0;
  z-index: -1;
  transition: var(--main-transition);
}
.work-steps .container .info .box:hover::before {
  width: 100%;
  height: 100%;
}
.work-steps .container .info .box img {
  width: 64px;
  margin-left: 30px;
}
.work-steps .container .info .box .text h3 {
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  line-height: 1.3;
}
.work-steps .container .info .box .text p {
  line-height: 1.6;
  margin: 10px 0 0;
  font-size: 16px;
  color: #777;
  font-weight: 400;
}
/* End Work Steps  */
/* Start Events  */
.events {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.events .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .events .container {
    flex-direction: column;
  }
  .events .container img {
    margin-bottom: 30px;
  }
}
.events .container img {
  max-width: 400px;
}
.events .container .info {
  flex: 1;
}
.events .time {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.events .time .unit {
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  text-align: center;
  transition: var(--main-transition);
}
.events .time .unit span {
  display: block;
  transition: var(--main-transition);
}
.events .time .unit span:first-child {
  color: var(--main-color);
  font-size: 30px;
  font-weight: bold;
  padding: 15px;
}
.events .time .unit span:last-child {
  font-size: 15px;
  font-weight: bold;
  padding: 8px 10px;
  border-top: 1px solid #d4d4d4;
}
.events .time .unit:hover,
.events .time .unit:hover span {
  border-color: var(--main-color);
}
.events .title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}
.events .description {
  text-align: center;
  line-height: 1.6;
  max-width: 450px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
}
.events .subscription {
  width: 100%;
  margin-top: 50px;
}
.events .subscription form {
  background-color: #f6f5f5;
  width: 600px;
  margin: 20px auto;
  padding: 30px 40px;
  border-radius: 50px;
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .events .subscription form {
    border-radius: 8px;
    flex-direction: column;
    width: 100%;
  }
}
.events .subscription form input[type="email"] {
  flex: 1;
  padding: 20px;
  border: 0;
  border-radius: 50px;
}
.events .subscription form input[type="email"]:focus {
  outline: none;
}
.events .subscription form input[type="email"]::placeholder {
  transition: opacity var(--main-transition);
}
.events .subscription form input[type="email"]:focus::placeholder {
  opacity: 0;
}
.events .subscription form input[type="submit"] {
  background-color: var(--main-color);
  color: white;
  border: 0;
  padding: 20px;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--main-transition);
  cursor: pointer;
}
@media (max-width: 991px) {
  .events .subscription form input[type="email"] {
    border-radius: 8px;
  }
  .events .subscription form input[type="submit"] {
    border-radius: 8px;
  }
  .events .container img {
    width: 100%;
  }
  .events .subscription {
    margin: 0;
  }
}
.events .subscription form input[type="submit"]:hover {
  background-color: var(--main-color-ait);
}
/* End Events  */
/* Start Pricing  */
.pricing {
  background-color: var(--section-background);
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.pricing .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.pricing .container .box {
  background-color: white;
  box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
  border-radius: 6px;
  text-align: center;
  position: relative;
  transition: var(--main-transition);
  z-index: 1;
  overflow: hidden;
}
.pricing .box::before,
.pricing .box::after {
  position: absolute;
  content: "";
  background-color: #f6f6f6;
  height: 50%;
  width: 0;
  transition: var(--main-transition);
  z-index: -1;
}
.pricing .box::before {
  left: 0;
  top: 0;
}
.pricing .box::after {
  right: 0;
  bottom: 0;
}
.pricing .container .box:hover::before,
.pricing .container .box:hover::after {
  width: 100%;
}
.pricing .container .popular {
  position: relative;
}
@media (min-width: 1200px) {
  .pricing .popular {
    top: -20px;
  }
}
.pricing .popular .lable {
  position: absolute;
  writing-mode: sideways-lr;
  right: 20px;
  background-color: var(--main-color);
  padding: 10px 10px 35px 10px;
  color: white;
}
.pricing .popular .lable::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  border-style: solid;
  border-width: 20px;
  border-color: transparent transparent white transparent;
}
.pricing .box .title {
  padding: 15px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}
.pricing .box img {
  width: 80px;
  margin-bottom: 30px;
}
.pricing .box .price {
  margin-bottom: 30px;
}
.pricing .box .price .amount {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1.2;
}
.pricing .box .price .time {
  display: block;
  padding-top: 10px;
  color: #777;
}
.pricing .box ul {
  text-align: right;
}
.pricing .box ul li {
  padding: 15px 35px 15px 15px;
  border-bottom: 1px solid #d4d4d4;
  font-weight: 400;
  position: relative;
}
.pricing .box ul li:first-child {
  border-top: 1px solid #d4d4d4;
}
.pricing .box ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  margin-left: 10px;
  font-weight: bold;
  color: var(--main-color);
  position: absolute;
  right: 10px;
}
.pricing .box a {
  display: inline-block;
  font-weight: 600;
  margin: 30px auto;
  padding: 12px 24px;
  border: 2px solid var(--main-color);
  border-radius: 12px;
  width: fit-content;
  transition: all 0.3s ease;
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  color: var(--main-color);
  text-decoration: none;
}

.pricing .box a:hover {
  background: var(--main-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Start Videos  */
.videos {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}

.videos .holder {
  background-color: var(--section-background);
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .videos .holder {
    flex-direction: column;
  }
}
.videos .holder .list {
  width: 400px;
  background-color: white;
}
@media (max-width: 991px) {
  .videos .holder .list {
    width: 100%;
  }
}
.videos .holder .list .name {
  background-color: var(--section-background);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: var(--main-color);
}
.videos .holder .list ul li {
  padding: 15px 20px;
  font-size: 15px;
  border-top: 1px solid #ddd;
  cursor: pointer;
}
.videos .holder .list ul li:hover {
  color: var(--main-color);
  background-color: #fafafa;
}
.videos .holder .list ul li span {
  display: block;
  margin-top: 10px;
  color: #777;
}
.videos .holder .preview {
  background-color: #e2e2e2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}
.videos .holder .preview img {
  max-width: 100%;
}
.videos .holder .preview .info {
  background-color: white;
  padding: 20px;
  font-size: 15px;
  margin-top: 10px;
}
/* End Videos  */
/* Start Stats  */
.stats {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background: var(--section-background);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(37,99,235,0.1)"/></svg>');
  background-size: 50px 50px;
  animation: float 6s ease-in-out infinite;
}
.stats::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(37, 99, 235, 0.05);
  width: 100%;
  height: 100%;
}
.stats h2 {
  font-size: 40px;
  margin: 0 auto 50px;
  width: fit-content;
  position: relative;
  color: var(--text-primary);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.stats .container .box {
  text-align: center;
  color: var(--text-primary);
  padding: 2rem;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stats .container .box:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
  border-color: var(--main-color);
}
.stats .box::before,
.stats .box::after {
  content: "";
  position: absolute;
  background-color: var(--main-color);
  width: 3px;
  height: 0;
  transition: 1s;
}
.stats .box::before {
  left: 0;
  top: 0;
}
.stats .box::after {
  right: 0;
  bottom: 0;
}
.stats .box:hover::before {
  height: 100%;
}
.stats .box:hover::after {
  height: 100%;
}
.stats .container .box i {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--main-color);
}
.stats .container .box span {
  display: block;
}
.stats .container .box .number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--main-color);
}

.stats .container .box .text {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.2rem;
}
/* End Stats  */
/* Start Discount  */
.discount {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
}
.discount .image {
  background-image: url(/imgs/discount-background1.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
  color: white;
  position: relative;
  z-index: 1;
  animation: change-img 10s linear infinite;
}
.discount .image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #759cf5f2;
  z-index: -1;
}
@media (max-width: 991px) {
  .discount .image {
    flex-basis: 100%;
  }
}
.discount .form {
  display: flex;
  flex-basis: 50%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .discount .form {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.discount .form .input {
  display: block;
  height: 100%;
  width: 100%;
  margin-bottom: 30px;
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: #f9f9f9;
  caret-color: var(--main-color);
}
.discount .form .input:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.discount .form .input::placeholder {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.discount .form .input:focus::placeholder {
  color: var(--main-color);
}
.discount .form textarea.input {
  resize: none;
  height: 200px;
}
.discount .form [type="submit"] {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(45deg, var(--main-color), var(--main-color-alt));
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.discount .form [type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.discount .content {
  text-align: center;
  padding: 0 20px;
}
.discount .content img {
  width: 400px;
  max-width: 100%;
}
.discount .content h2 {
  font-size: 40px;
  font-weight: bold;
}
.discount .content p {
  line-height: 1.7;
  max-width: 500px;
}

/* End Discount  */
/* Start Footer  */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 70px 20px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer .box h3 {
  margin: 0 0 40px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent-color);
}
.footer .box .social {
  display: flex;
  margin-bottom: 30px;
}
.footer .box li {
  margin-left: 10px;
}
.footer .box .social li a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 20px;
}
.footer .box li:hover .facebook {
  background: #185dff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 93, 255, 0.3);
}
.footer .box li:hover .youtube {
  background: #b00606;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(176, 6, 6, 0.3);
}
.footer .box li:hover .twitter {
  background: #000000;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.footer .box li:hover .instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
.box .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}
.box .links li {
  padding: 15px 0;
  display: block;
  font-size: 16px;
  font-weight: 400;
  transition: var(--main-transition);
}
.box .links li a {
  color: white;
  transition: var(--main-transition);
}
.box .links li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f100";
  font-weight: bold;
  margin-left: 10px;
  color: var(--main-color);
}
.box .links li:hover {
  padding-right: 20px;
}
.box .links li:hover a {
  color: var(--main-color);
}
.footer .box p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}
.footer .box .line {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.footer .box .line i {
  color: var(--main-color);
  font-size: 25px;
  margin-left: 15px;
}
.footer .box .line .info span{
  display: block;
  margin-bottom: 5px;
}
.footer .footer-gallery img {
  width: 78px;
  margin: 1px;
  border: 3px solid #fff;
}
.footer .footer-gallery h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.footer .copyright {
  margin: 0;
  padding: 20px;
  border-top: 1px solid #ccc;
  text-align: center;
}
/* End Footer  */
/* Start Animation  */
@keyframes up-to-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}
@keyframes bouncing {
  0%,
  10%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  60% {
    transform: translateY(-20px);
  }
}
@keyframes left-move {
  50% {
    left: 0;
    height: 12px;
    width: 12px;
  }
  100% {
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
  }
}
@keyframes right-move {
  50% {
    right: 0;
    height: 12px;
    width: 12px;
  }
  100% {
    right: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
  }
}
@keyframes moving-arrow {
  0%,
  50% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(-10px);
  }
}
@keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}
@keyframes change-img {
  0%,
  100% {
    background-image: url(../imgs/discount-background1.jpg);
  }
  50% {
    background-image: url(../imgs/discount-background2.jpg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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





/* End Animation  */
