:root {
  --main-color: #0ea5e9; /* Modern Sky Blue */
  --main-color-alt: #0284c7; /* Darker Shade */
  --secondary-color: #0f172a; /* Slate 900 */
  --section-bg: #f8fafc; /* Slate 50 */
  --text-color: #334155; /* Slate 700 */
  --text-light: #64748b; /* Slate 500 */
  --transparent-color: rgba(15, 23, 42, 0.85); /* Dark Slate transparency */
  --section-padding: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  --radius: 12px;
}
/* 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 {
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  color: var(--text-color);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  color: var(--secondary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background-color: #f6f6f6;
  box-shadow: 0 0 10px #ddd inset;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--main-color-alt);
}

ul {
  list-style: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */

/* Start Components */
.main-heading {
  text-align: center;
}

.main-heading h2 {
  font-weight: normal;
  margin-top: 20px;
  font-size: 40px;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
}

.main-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #333;
  bottom: -30px;
  width: 120px;
}

.main-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #333;
  bottom: -38px;
  background-color: white;
}

.main-heading p {
  width: 550px;
  margin: 0 auto 100px;
  max-width: 100%;
  line-height: 2;
  color: #777;
}

/* End Components */
/* Start Header */
header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s ease;
}

header.sticky {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 90px;
  transition: min-height 0.3s;
}

header.sticky .container {
  min-height: 70px;
}

header .container::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  bottom: 0;
  width: 100%;
  left: 0;
  transition: 0.3s;
}

header.sticky .container::after {
  opacity: 0;
}

header .logo img {
  height: 48px;
  transition: 0.3s;
}

header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header nav .toggle-menu {
  color: white;
  font-size: 24px;
  cursor: pointer;
}

header.sticky nav .toggle-menu {
  color: var(--secondary-color);
}

@media (min-width: 768px) {
  header nav .toggle-menu {
    display: none;
  }
}

header nav ul {
  display: flex;
  gap: 10px;
}

@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: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
  }

  header nav ul li a {
    padding: 15px !important;
    text-align: center;
  }
}

header nav ul li a {
  padding: 10px 20px;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  border-radius: 50px;
}

header.sticky nav ul li a {
  color: var(--text-color);
}

header nav ul li a.active,
header nav ul li a:hover {
  background: white;
  color: var(--main-color);
}

header.sticky nav ul li a.active,
header.sticky nav ul li a:hover {
  background: var(--main-color);
  color: white;
}

header nav ul li a::after {
  display: none;
}

header nav .form {
  width: 40px;
  height: 30px;
  position: relative;
  margin-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

header.sticky nav .form {
  border-left-color: rgba(0, 0, 0, 0.1);
}

header nav .form i {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 18px;
  transition: var(--transition);
}

header.sticky nav .form i {
  color: var(--secondary-color);
}

header nav .form:hover i {
  color: var(--main-color);
}
/*End Header*/
/* Start Landing */
.landing {
  min-height: 100vh;
  background-image: url(../Images/landing.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.landing .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.4)
  );
}

.landing .text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  color: white;
  background: none;
}

.landing .text .content {
  max-width: 600px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0 20px 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
}

@media (min-width: 768px) {
  .landing .text {
    justify-content: flex-start;
  }
}

.landing .text .content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.landing .text .content h2 span {
  color: var(--main-color);
  background: -webkit-linear-gradient(45deg, var(--main-color), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing .text .content p {
  font-size: 18px;
  line-height: 1.8;
  color: #e2e8f0;
}

.landing .change-background {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing .change-background:hover {
  color: var(--main-color);
  background: rgba(255, 255, 255, 0.1);
}

.landing .fa-angle-left {
  left: 30px;
}

.landing .fa-angle-right {
  right: 30px;
}

.landing .bullets {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  display: flex;
  gap: 15px;
}

.landing .bullets li {
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 0;
}

.landing .bullets li.active,
.landing .bullets li:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  transform: scale(1.2);
}
/* End Landing */
/* Start Services */
.services {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--section-bg);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-box {
  background-color: white;
  padding: 50px 30px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--main-color);
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-box:hover::before {
  width: 100%;
}

.service-box i {
  color: var(--main-color);
  font-size: 40px;
  margin-bottom: 30px;
  transition: var(--transition);
  background: rgba(14, 165, 233, 0.1);
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-box:hover i {
  background-color: var(--main-color);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-box h3 {
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 22px;
}

.service-box p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}
/* End Services */

/* Start Design */
.design {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  height: auto;
  min-height: 600px;
  position: relative;
  background-image: url(../images/design-features.jpg);
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}

.design::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7)
  );
}

.design .image,
.design .text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.design .image {
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.design .image img {
  position: relative;
  bottom: -50px;
  max-width: 80%;
  transition: var(--transition);
}

.design .text {
  color: white;
  padding: 60px;
  background-color: var(--transparent-color);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.design .text h2 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: white;
  letter-spacing: 1px;
}

.design .text ul li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  display: flex;
  align-items: center;
}

.design .text ul li:last-child {
  border-bottom: none;
}

.design .text ul li::before {
  font-family: "Font Awesome 5 free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 20px;
  color: var(--main-color);
  background: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

@media (max-width: 991px) {
  .design {
    flex-direction: column;
    height: auto;
  }
  .design .image {
    display: none;
  }
  .design .text {
    margin: 20px;
    padding: 40px;
  }
}
/* End Design */
/*Start Portfolio */
.portfolio {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: white;
}

.shuffle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.shuffle li {
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  color: var(--text-color);
  transition: var(--transition);
  cursor: pointer;
  background: white;
  font-weight: 600;
  font-size: 15px;
}

.shuffle li.active,
.shuffle li:hover {
  background-color: var(--main-color);
  color: white;
  border-color: var(--main-color);
  box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

.portfolio .imag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.portfolio .imag-container .box {
  position: relative;
  overflow: hidden;
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .portfolio .imag-container .box {
    flex-basis: 50%;
  }
}

@media (min-width: 1200px) {
  .portfolio .imag-container .box {
    flex-basis: 25%;
  }
}

.portfolio .imag-container .box img {
  max-width: 100%;
  width: 100%;
  transition: 0.5s;
  display: block;
}

.portfolio .imag-container .box .caption {
  position: absolute;
  left: 0;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  transition: 0.3s;
  bottom: -100%;
  z-index: 2;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.portfolio .imag-container .box:hover .caption {
  bottom: 0;
}

.portfolio .imag-container .box:hover img {
  transform: scale(1.1) rotate(2deg);
}

.portfolio .imag-container .box h4 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-size: 18px;
}

.portfolio .imag-container .box p {
  color: var(--main-color);
  font-weight: 500;
}

.portfolio .more {
  background-color: var(--main-color);
  color: white;
  padding: 15px 40px;
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: bold;
  box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}

.portfolio .more:hover {
  background-color: var(--main-color-alt);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(14, 165, 233, 0.6);
}
/*End portfolio */

/*Start video*/
.video {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.video video {
  width: 100%;
  display: block;
}

.video .text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  background-color: var(--transparent-color);
  z-index: 2;
}

.video .text h2 {
  margin: 30px 0;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}

.video .text p {
  margin-bottom: 30px;
  color: #e2e8f0;
}

.video .text .icon-video {
  width: 80px;
  height: 80px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.video .text .icon-video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.video .text .icon-video a {
  color: white;
  transition: 0.3s;
  z-index: 2;
}

.video .text .icon-video:hover a {
  color: var(--main-color);
  transform: scale(1.2);
}

.video .text button {
  background-color: var(--main-color);
  color: white;
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: var(--transition);
  border-radius: 50px;
}

.video .text button:hover {
  background-color: var(--main-color-alt);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .video .text {
    padding: 20px;
  }
  .video .text h2 {
    font-size: 20px;
  }
}
/*End video*/

/*Start about*/
.about {
  padding-top: var(--section-padding);
  overflow: hidden;
  text-align: center;
  padding-bottom: 0;
}

.about img {
  position: relative;
  bottom: -120px;
  margin-top: -120px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .about img {
    bottom: -60px;
    margin-top: -60px;
  }
}
/*End about*/

/*Start stats*/
.stats {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: #f9f9f9;
  text-align: center;
  background-image: url(../images/stats.png);
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.stats::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
}

.stats .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stats .box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 50px 30px;
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats .box:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--main-color);
}

.stats .box i {
  width: 60px;
  height: 60px;
  background-color: white;
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  font-size: 20px;
}

.stats .box:hover i {
  background-color: var(--main-color);
  color: white;
}

.stats .box .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.stats .box h3 {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 600;
}
/* End Stats */
/*Start skills*/
.skills {
  padding-top: var(--section-padding);
  background-color: white;
  padding-bottom: var(--section-padding);
}

.skills .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px;
}

.skills .container .heading-section {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.skills .container .dsecription-section {
  margin-bottom: 40px;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

.skills .testimonials .content {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
}

.skills .testimonials .content img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 0;
  margin-right: 30px;
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--main-color);
}

.skills .testimonials .text {
  line-height: 1.8;
  border-bottom: none;
}

.skills .testimonials .text p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
}

.skills .testimonials .text h4 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-align: right;
}

@media (max-width: 767px) {
  .skills .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .skills .testimonials .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .skills .testimonials .content img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.skills .testimonials .bullets {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.skills .testimonials .bullets li {
  width: 12px;
  height: 12px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.skills .testimonials .bullets li.active {
  background-color: var(--main-color);
  border-color: var(--main-color);
  transform: scale(1.2);
}

/*Progress the skills*/
.skills .skills-per .prog-holder {
  margin-bottom: 30px;
}

.skills .skills-per .prog-holder h4 {
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.skills .skills-per .prog-holder .prog {
  background-color: #f1f5f9;
  height: 12px;
  border-radius: 20px;
  overflow: visible;
  position: relative;
}

.skills .skills-per .prog-holder .prog span {
  display: block;
  background-color: var(--main-color);
  height: 100%;
  position: relative;
  border-radius: 20px;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 20px 20px;
}

.skills .skills-per .prog-holder .prog span::before {
  content: attr(data-width);
  position: absolute;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 500;
  top: -35px;
  right: -18px;
  padding: 4px 8px;
  font-size: 12px;
  text-align: center;
  border-radius: 4px;
}

.skills .skills-per .prog-holder .prog span::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 6px;
  border-color: var(--secondary-color) transparent transparent transparent;
  right: -6px;
  top: -12px;
}

/* End Skills */
/*Start Quote*/
.quote {
  padding: var(--section-padding) 0;
  background: url(../images/quote.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}

.quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 75%);
}

.quote .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.quote .quote-icon {
  font-size: 50px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.quote .quote-icon:last-of-type {
  margin-top: 20px;
  margin-bottom: 0;
}

.quote q {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  padding: 0 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.span-quote {
  display: block;
  margin-top: 30px;
  font-size: 22px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .quote .quote-icon {
    font-size: 40px;
  }

  .quote q {
    font-size: 24px;
    padding: 0 10px;
  }

  .span-quote {
    font-size: 18px;
    margin-top: 20px;
  }
}

/*End Quote*/

/*Start Pricing*/
.pricing {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--section-bg);
}

.pricing .plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.plan-box {
  background-color: white;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.plan-box.featured {
  transform: scale(1.05); /* Make it pop */
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--main-color);
  z-index: 2;
}

.plan-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-10px);
}

.pricing .plans .plan-box .head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 40px;
  align-items: center;
  border-top: none;
  border-bottom: 1px solid #e2e8f0;
}

.pricing .plans .plan-box .head h3 {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.pricing .plans .plan-box .head .dollar {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--secondary-color);
  position: relative;
}

.pricing .plans .plan-box .head .dollar::before {
  content: "$";
  position: relative;
  font-size: 24px;
  top: -30px;
  margin-right: 5px;
  font-weight: 500;
}

.pricing .plans .plan-box .head .dollar::after {
  content: "/MO";
  position: absolute;
  font-size: 14px;
  right: -35px;
  bottom: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.pricing .plans .plan-box ul {
  border-bottom: 1px solid #e2e8f0;
  padding: 30px 0;
  flex: 1;
}

.pricing .plans .plan-box ul li {
  padding: 15px 0;
  position: relative;
  font-size: 15px;
}

.pricing .plans .plan-box ul li:not(:last-child)::after {
  display: none;
}

.pricing .plans .plan-box .foot a {
  display: block;
  padding: 15px 30px;
  margin: 30px auto 0;
  width: 100%;
  text-decoration: none;
  color: var(--main-color);
  background-color: white;
  border: 2px solid var(--main-color);
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 700;
}

.plan-box.featured .foot a,
.pricing .plans .plan-box .foot a:hover {
  background-color: var(--main-color);
  color: white;
}

.pricing .contact-price {
  text-align: center;
  margin: 50px auto 20px;
  font-size: 20px;
  font-weight: 500;
}

.pricing .contact-link {
  display: block;
  padding: 15px 40px;
  margin: 20px auto;
  width: fit-content;
  text-decoration: none;
  color: white;
  background-color: var(--main-color);
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 600;
}

.pricing .contact-link:hover {
  background-color: var(--main-color-alt);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
/*End Pricing*/
/*Start Subscription*/
.subscription {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-image: url(../images/subscribe.jpg);
  background-size: cover;
  position: relative;
  color: white;
  background-attachment: fixed;
}

.subscription::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
}

.subscription .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .subscription .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.subscription form {
  display: flex;
  position: relative;
  width: 500px;
  max-width: 100%;
  box-shadow: var(--shadow);
  border-radius: 50px;
  overflow: hidden;
  background: white;
}

.subscription form i {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  color: var(--text-light);
  z-index: 1;
}

.subscription form input[type="email"] {
  padding: 20px 20px 20px 60px;
  border: none;
  background: white;
  caret-color: var(--main-color);
  flex: 1;
  color: var(--text-color);
  outline: none;
}

.subscription form input[type="submit"] {
  padding: 10px 30px;
  background-color: var(--main-color);
  color: white;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition);
}

.subscription form input[type="submit"]:hover {
  background-color: var(--main-color-alt);
}

.subscription form input::placeholder {
  color: var(--text-light);
}

.subscription .privacy {
  letter-spacing: 0.5px;
  font-size: 16px;
  text-align: center;
  margin-top: 0;
}

.subscription .privacy a {
  color: var(--main-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.subscription .privacy a:hover {
  color: white;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .subscription form {
    width: 100%;
  }
}
/*End Subscription*/

/* Start Contact */
.contact {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 50px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 16px;
  transition: var(--transition);
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--main-color);
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.contact-form textarea {
  height: 180px;
  resize: vertical;
}

.contact-form button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-left: auto;
}

.contact-form button:hover {
  background-color: var(--main-color-alt);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  text-align: left;
}

.info-item i {
  color: var(--main-color);
  font-size: 24px;
  margin-bottom: 0;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

.info-item p {
  color: var(--text-light);
  font-size: 15px;
}
/* End Contact */
/* Start Blog */
.blog {
  /*   padding-top: var(--section-padding); */
  padding-bottom: var(--section-padding);
  background-color: white;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-post {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  transition: 0.3s;
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.post-content p {
  color: #777;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.read-more:hover {
  color: #0fb4e1;
}

/* End Blog */
/* Start Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 50px 0;
  text-align: center;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.social-links a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-links a:hover {
  color: white;
  background-color: var(--main-color);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
  }
}
/* End Footer */

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-100 {
  transition-delay: 0.1s;
}
.reveal.delay-200 {
  transition-delay: 0.2s;
}
.reveal.delay-300 {
  transition-delay: 0.3s;
}

/* Mobile Menu Show */
header nav ul.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  z-index: 10;
  padding: 20px 0;
  box-shadow: var(--shadow);
}

header nav ul.show li a {
  padding: 15px;
  text-align: center;
}

/* Back to Top */
.to-top {
  padding: 12px;
  background-color: var(--main-color);
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}

.to-top.active {
  bottom: 40px;
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  background-color: var(--main-color-alt);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
