/*================================================
Fonts
================================================*/

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");

/* Start Variables */
:root {
  --primary-color: #fd4a18;
  --dark-color: #151515;
  --footer-background-color: #1a1a1a;
  --secondary-color: #616161;
  --grey-color: #f7f8f9;
  --white-color: #ffffff;
  --body-fonts: "Nunito Sans", sans-serif;
  --title-fonts: "Jost", sans-serif;
  --transparent-color: rgb(253 74 24 / 72%);
  --section-padding: 80px;
}

::-moz-selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}

::selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}

/* End Variables */
/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white-color);
  font-family: var(--body-fonts), sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
  line-height: 2;
  color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-fonts);
  color: var(--dark-color);
  font-style: normal;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none !important;
}

h1 {
  font-size: 40px;
  font-style: normal;
  line-height: 48px;
}

h2 {
  font-size: 36px;
  font-style: normal;
  line-height: 44px;
}

h3 {
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
}

h4 {
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
}

h5 {
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

h6 {
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
}

/*===== HTML Tags =====*/
a,
.button {
  color: var(--primary-color);
  outline: none !important;
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
}

a:focus,
a:hover {
  color: var(--primary-color);
  outline: none;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

pre {
  background: var(--white-color);
  padding: 15px;
  border: 1px solid var(--grey-color);
}

hr {
  margin: 0;
  padding: 0px;
  border-bottom: 1px solid #e0e0e0;
  border-top: 0px;
}

b,
strong {
  font-weight: 600;
}

ul {
  list-style: none;
}

/* End Global Rules */

/* start loading icon */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  animation: loader-animation 3s forwards;
  top: 0px;
  z-index: 99999999999;
  /* 3 seconds for the fade out */
}

#loading-screen img {
  max-width: 200px;
}

@keyframes loader-animation {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
    /* Ensures the element is removed after fade out */
  }
}

/* end loading icon */
/* Start Components */
.main-heading {
  text-align: center;
  margin-bottom: 50px;
}

.main-heading .special-heading {
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}

.main-heading p {
  margin: 5px 0 0;
  font-size: 20px;
  text-align: center;
  color: #797979;
}

/* End Components */

/* Start theming buttons */

.theming-btn {
  font-family: var(--title-fonts);
  font-size: 16px;
  padding: 12px 45px;
  line-height: 2;
  position: relative;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.primary-button {
  background: var(--primary-color);
  color: var(--white-color);
}

.primary-button:hover,
.primary-button:focus {
  background: var(--dark-color);
  color: var(--white-color);
}

.secondary-button {
  background: var(--dark-color);
  color: var(--white-color);
}

.secondary-button:hover,
.secondary-button:focus {
  background: var(--primary-color);
  color: var(--white-color);
}

/* End theming buttons */

/* Start Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  background: var(--white-color);
  z-index: 99;
}

header .main-nav {
  position: relative;
  padding: 25px 0px;
}



header .top-header {
  background: var(--dark-color);
  padding: 0;
  font-size: 14px;
}

header .top-header .container .header-social ul {
  margin: 0;
  padding: 0;
}

header .top-header .container .header-social ul li {
  list-style: none;
  display: inline-flex;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container .header-social ul li a {
  color: var(--white-color);
  padding: 10px 20px;
  display: inline-flex;
}

header .top-header .container .top-header ul li a:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

header .top-header .container .header-social ul li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container .header-contact ul {
  margin: 0;
  padding: 0;
}

header .top-header .container .header-contact ul li {
  list-style: none;
  display: inline-block;
  color: var(--white-color);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
}

header .top-header .container .header-contact ul li:last-child {
  margin-right: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container .header-contact ul li i {
  margin-right: 10px;
}

header .top-header .container .header-contact ul li a {
  color: var(--white-color);
}

header .top-header .container .header-contact ul li a:hover {
  color: var(--white-color);
  background: transparent;
}

header .logo img {
  height: 40px;
}

header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header nav .toggle-menu {
  color: #333;
  font-size: 22px;
}

@media (min-width: 768px) {
  header nav .toggle-menu {
    display: none;
  }
}

header nav ul {
  display: flex;
}

@media (max-width: 767px) {
  header nav ul {
    display: none;
  }

  header nav .toggle-menu:hover+ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
  }

  header nav ul li a {
    padding: 15px !important;
    display: block;
  }
}

header nav ul li a {
  padding: 40px 10px;
  font-family: var(--title-fonts);
  position: relative;
  margin-right: 20px;
  color: var(--dark-color);
  line-height: 27px;
  font-weight: 400;
  z-index: 2;
}

header nav ul li a.active,
header nav ul li a:hover {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

header nav .form {
  position: relative;
  margin-left: 30px;
}

/* End Header */

/* Start Components */
.main-heading {
  text-align: center;
  margin-bottom: 50px;
}

.main-heading .special-heading {
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}

.main-heading p {
  margin: 5px 0 0;
  font-size: 20px;
  text-align: center;
  color: #797979;
}

/* End Components */

/* Start hero-section */
.hero-section {
  min-height: 100vh;
  background-color: #1f2021;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(253 74 24 / 22%);
}

.hero-section .text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  padding: 50px;
  background-color: var(--transparent-color);
  color: white;
  display: flex;
  justify-content: flex-end;
}

.hero-section .text .content {
  max-width: 500px;
}

@media (max-width: 767px) {
  .hero-section .text {
    width: 100%;
  }

  .hero-section .text .content {
    max-width: 100%;
  }
}

.hero-section .text .content h2 {
  font-weight: 900;
}

.hero-section .text .content p {
  font-size: 14px;
  line-height: 2;
}

.hero-section .change-background {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ddd;
}

@media (max-width: 767px) {
  .hero-section .change-background {
    display: none;
  }
}

/* End Landing */


/* Start Services */
.Service .container .divCards {
  width: 474px;
  height: 731px;
  background-color: rgb(252, 252, 252);
  border-radius: 20px;
}

.Service {
  background-color: rgb(254, 246, 244);
  padding: 50px 0;
  font-family: 'Arial', sans-serif;
}

.Service .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;

}

.Service .container .divCards .codeIcon i {
  font-size: 50px;
  color: white;
  margin-top: 20px;
  background-color: var(--primary-color);
  padding: 10px 10px;
  margin-left: 20px;
  display: inline-block;

}

.Service .container .divCards .codeIcon i .code-icon {
  color: #333;
  font-size: 22px;
  font-family: "remixicon", sans-serif
}

.Service .container .divCards .headertext {
  text-align: left;
  color: black;
  font: 50px bold black;
  padding: 20px 20px;
}

.Service .container .divCards .text {
  text-align: left;
  color: black;
  font-size: 20px;
  padding: 10px 20px;

}

.Service .container .divCards ul {
  font-size: 20px;
  padding: 10px 20px;
  text-align: left;
  color: black;
}

.Service .container .divCards ul .check-icon,
.Pricing .container .Pricing-con .pricingCard-botton .check-icon {
  padding-right: 20px;
  background-color: white;
  color: var(--primary-color);
}

.Service .container .divCards .learntext {
  padding: 20px 30px;
  text-align: left;
  color: black;
}

.Service .container .divCards .codeIcon {
  margin-bottom: 20px;
  margin-top: 20px;
}

.Service .container .divCards .codeIcon i {
  font-size: 40px;
  color: white;
  background-color: #ff6b35;
  padding: 15px;
  border-radius: 12px;
  display: inline-block;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 40px;
  font-family: "remixicon", sans-serif;
  font-weight: normal;
  font-style: normal;
}

.Service .container .divCards .learntext p {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  position: relative;
}

.Service .container .divCards .learntext p i {
  margin-left: 10px;
}

.Service .textQ {
  align-content: center;
  align-items: center;
  text-align: center;
  width: 1015px;
  height: 340px;
  ;
  border-radius: 30px;
  background-color: white;
  margin: 20px auto;
}

.Service .textQ .Htext {
  font: 30px bold black;
  font-weight: 600;
  color: black;
  padding: 20px;
  text-align: center;
}

.Service .textQ .button button {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 218px;
  text-align: center;
  height: 56px;
  color: white;
  border-color: white;
  margin-top: 20px;

}


/* Start portifilo */

.Portifilo .shuffle {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.Portifilo .shuffle .active-all {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 54px;
  text-align: center;
  padding: 10px;
  color: white;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;

}

.Portifilo .shuffle .active-web {
  background-color: var(--grey-color);
  border-radius: 20px;
  width: 61px;
  text-align: center;
  padding: 10px;
  color: black;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  margin-left: 20px;
}

.Portifilo .shuffle .active-app {
  background-color: var(--grey-color);
  border-radius: 20px;
  width: 61px;
  text-align: center;
  padding: 10px;
  color: black;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  margin-left: 20px;
}

.Portifilo .shuffle .active-design {
  background-color: var(--grey-color);
  border-radius: 20px;
  width: 83px;
  text-align: center;
  padding: 10px;
  color: black;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  margin-left: 20px;
}

.Portifilo .shuffle .active-branding {
  background-color: var(--grey-color);
  border-radius: 20px;
  width: 102px;
  text-align: center;
  padding: 10px;
  color: black;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  margin-left: 20px;
}

.Portifilo .image-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.Portifilo .image-container .img {
  width: 100px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}


.Portifilo .textQ {
  align-content: center;
  align-items: center;
  text-align: center;
  width: 1015px;
  height: 340px;
  border-radius: 30px;
  background-color: rgb(254, 246, 244);
  margin: 20px auto;
}

.Portifilo .textQ .Htext {
  font: 30px bold black;
  font-weight: 600;
  color: black;
  padding: 20px;
  text-align: center;
}

.Portifilo .textQ .button button {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 218px;
  text-align: center;
  height: 56px;
  color: white;
  border-color: white;
  margin-top: 20px;

}

.Portifilo .last-container .textQ {
  background-color: rgb(254, 246, 244);
}


/* End portifilo */

/* Start MiddleSection */
.middle-section {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  padding: 20px;
  display: flex;
}

.middle-section .video-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 415px;
  margin-top: 480px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.middle-section .video {
  width: 100%;
  height: 610px;
  object-fit: cover;
  display: block;
  background-color: #000;
}

.middle-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f97316;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.middle-section .video-wrapper:hover .video-overlay {
  opacity: 0.4;
}

.middle-section .video-wrapper .text .WATCH {
  border-radius: 50px;
  height: 48px;
  width: 260px;
  margin-bottom: 20px;
  background: var(--transparent-color);
  opacity: 0.5;
}

.middle-section .video-wrapper .text .PlayVideo {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;



}

.middle-section .video-wrapper .text .PlayVideo i {
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
}

.middle-section .video-wrapper .text .LearnMore {
  background-color: #000;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.middle-section .video-wrapper .text {
  text-align: left;
  width: 615px;
  position: absolute;
  color: black;
  top: 17%;
  padding-left: 174px;
  text-wrap: wrap;
  color: white;
}

.middle-section .video-wrapper .text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.middle-section .video-wrapper .box-container {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.middle-section .video-wrapper .box-container .box-one,
.middle-section .video-wrapper .box-container .box-two,
.middle-section .video-wrapper .box-container .box-three {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px 79px;
  text-align: center;
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-right: 120px;
}

.middle-section .video-wrapper .box-container .box-one h2,
.middle-section .video-wrapper .box-container .box-two h2,
.middle-section .video-wrapper .box-container .box-three h2 {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.middle-section .video-wrapper .box-container .box-one p,
.middle-section .video-wrapper .box-container .box-two p,
.middle-section .video-wrapper .box-container .box-three p {
  color: white;
}

/* End MiddleSection */
/* start Blog */
.large-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.Blog .shuffle {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.Blog .shuffle .active-all {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 54px;
  text-align: center;
  padding: 10px;
  color: white;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;

}

.Blog .shuffle .active-web {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 61px;
  text-align: center;
  padding: 10px;
  color: white;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  margin-left: 20px;
}

.Blog .shuffle .active-app {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 61px;
  text-align: center;
  padding: 10px;
  color: white;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  margin-left: 20px;
}

.Blog .shuffle .active-design {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 83px;
  text-align: center;
  padding: 10px;
  color: white;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  margin-left: 20px;
}

.Blog .shuffle .active-branding {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 102px;
  text-align: center;
  padding: 10px;
  color: white;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  margin-left: 20px;
}

.Blog .textQ {
  align-content: center;
  align-items: center;
  text-align: center;
  width: 1015px;
  height: 340px;
  ;
  border-radius: 30px;
  background-color: rgb(254, 246, 244);
  ;
  margin: 20px auto;
}

.Blog .textQ .Htext {
  font: 30px bold black;
  font-weight: 600;
  color: black;
  padding: 20px;
  text-align: center;
}

.Blog .textQ .button button {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 218px;
  text-align: center;
  height: 56px;
  color: white;
  border-color: rgb(134, 84, 84);
  margin-top: 20px;

}

.Blog .textQ {
  background-color: rgb(254, 246, 244);
}

/* End Blog */

/* start Pricng */
.Pricing  {
  background-color: rgb(254, 246, 244);
  padding: 80px 0;
  min-height: 50px;
}

.Pricing .container .main-heading {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 70px;
}

.Pricing .container .Pricing-con {
  background-color: rgb(254, 246, 244);
  padding: 80px 0;
  display: flex;
  gap: 70px;
  justify-content: center;
  align-items: center;
}

.pricing .textQ {
  align-content: center;
  align-items: center;
  text-align: center;
  width: 1015px;
  height: 340px;
  border-radius: 30px;
  background-color: rgb(254, 246, 244);
  margin: 20px auto;
}

.Pricing .container .Pricing-con .pricingCard-top {
  background-color: #bfc3c8;
  width: 400px;
  height: 350px;
  border-radius: 20px;
  text-align: center;
  padding-top: 66px;
  padding-bottom: 76px;
}

.Pricing .container .row  .container .Pricing-con .Card .Card-top{
  background-color: var(--primary-color);
}


.Pricing .container .Pricing-con .pricingCard-top-two p {
  color: #000;
}

.Pricing .container .Pricing-con .pricingCard-top-two {
  background-color: var(--primary-color);
  width: 400px;
  height: 350px;
  border-radius: 20px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 66px;
}

.Pricing .container .Pricing-con .pricingCard-top p {
  color: #000;
}

.Pricing .container .Pricing-con .pricingCard-botton {
  width: 400px;
  height: 490px;
  background-color: white;
  border-radius: 0px 0px 0px 20px;
  padding: 60px;
  text-align: left;
}

.Pricing .textQ {
  align-content: center;
  align-items: center;
  text-align: center;
  width: 1015px;
  height: 340px;
  border-radius: 30px;
  background-color: white;
  margin: 327px auto;
}

.Pricing .textQ .Htext {
  font: 30px bold black;
  font-weight: 600;
  color: black;
  padding: 20px;
  text-align: center;
}

.Pricing .textQ .button button {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 218px;
  text-align: center;
  height: 56px;
  color: white;
  border-color: white;
  margin-top: 20px;
}

/* End Pricng */

/* Start About */
.about-us {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: #fff;
  position: relative;
}

.about-us .about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-us .about-image {
  position: relative;
  max-width: 100%;
}

.about-us .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-us .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 120px;
}

.about-us .experience-badge .years {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--title-fonts);
  line-height: 1;
}

.about-us .experience-badge .text {
  display: block;
  font-size: 12px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-us .about-info .about-subtitle {
  display: inline-block;
  background: rgba(253, 74, 24, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-us .about-info h3 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.about-us .about-info p {
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-us .about-features {
  margin: 30px 0;
}

.about-us .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.about-us .feature-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.about-us .feature-item span {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
}

.about-us .about-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.about-us .about-video-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-us .about-video-btn i {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.about-us .about-video-btn:hover i {
  transform: scale(1.1);
  background: var(--dark-color);
}

.about-us .about-video-btn:hover {
  color: var(--primary-color);
}

.about-us .about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 50px 0px;
  border-radius: 40px;
  background: linear-gradient(135deg, #fff6f3 0%, #f8f9fa 100%);
}

.about-us .about-stats .stat-box {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.about-us .about-stats .stat-box:hover {
  transform: translateY(-5px);
}

.about-us .about-stats .stat-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-us .about-stats .stat-box h4 {
  font-size: 35px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-family: var(--title-fonts);
}

.about-us .about-stats .stat-box p {
  color: var(--secondary-color);
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
}

/* End About */

/* start portfolio */
.large-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* End portfolio */


/* start Footer */
footer {
  background: var(--footer-background-color);
  color: var(--white-color);
  padding: 60px 0 0 0;
  position: relative;
}

footer .footer-content .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  padding: 45px 0 45px;
}

footer .footer-logo {
  margin-bottom: 20px;
}

footer .footer-logo img {
  max-width: 200px;
}

footer .footer-description {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}

footer .footer-social h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

footer .footer-social .social-links {
  display: flex;
  gap: 12px;
}

footer .footer-social .social-links .social-link {
  width: 45px;
  height: 45px;
  background-color: #2c2c2c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7d7d7;
}

footer .social-link:hover {
  color: white;
  transform: translateY(-3px);
}

footer .social-link.facebook:hover {
  background: #3b5998;
}

footer .social-link.twitter:hover {
  background: #1da1f2;
}

footer .social-link.linkedin:hover {
  background: #0077b5;
}

footer .social-link.instagram:hover {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
}

footer .social-link.github:hover {
  background: #333;
}

footer .footer-column .footer-widget .widget-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

footer .footer-column .footer-widget .widget-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  left: 0px;
  bottom: 0px;
}

footer .footer-column .footer-widget .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-column .footer-widget .footer-links li {
  margin-bottom: 12px;
}

footer .footer-column .footer-widget .footer-links li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

footer .footer-column .footer-widget .footer-links li a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

footer .footer-column .footer-widget .footer-links li a:hover::before {
  opacity: 1;
}

footer .footer-column .footer-widget .contact-info .contact-item {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}

footer .footer-column .footer-widget .contact-info .contact-item i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 3px;
  min-width: 16px;
}

footer .newsletter h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

footer .newsletter p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

footer .newsletter-form {
  position: relative;
}


footer .newsletter-input {
  position: relative;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

footer .newsletter-input input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  outline: none;
}

footer .newsletter-input button {
  padding: 12px 15px;
  background: var(--primary-color);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}


.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .footer-bottom-content .copyright p {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
}

footer .footer-bottom-links {
  display: flex;
  gap: 30px;
}

footer .footer-bottom-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

footer .footer-bottom-links a:hover {
  color: var(--primary-color);
}


/* End Footer */