@font-face {
  font-family: "iranyekan";
  src: url("fonts/iranyekanwebmedium.woff");
  src: url("fonts/iranyekanwebmedium.otf");
  src: url("fonts/iranyekanwebmedium.ttf");
}
@font-face {
  font-family: "lalezar";
  src: url("fonts/Lalezar-Regular.otf");
  src: url("fonts/Lalezar-Regular.ttf");
}

* {
  margin: 0px;
  padding: 0px;
  font-family: iranyekan;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  z-index: 1000000;
  border-bottom: 1px solid rgb(231, 231, 231);
  background-color: rgba(255, 255, 255, 0.94);
  position: fixed;
  padding: 10px 4%;
  top: 0px;
  right: 0;
  left: 0;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(5px);
}
.nav {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.nav a {
  font-size: 16px;
  text-decoration: none;
  color: black;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.nav-title {
  transition: 0.15s ease;
  margin: 0 15px;
  padding: 4px 10px;
  border-radius: 10px;
}
.nav-title:hover {
  background-color: hsla(208, 93.5%, 48.4%, 0.05);
}

.navbar button {
  font-weight: bold;
  padding: 6px 18px;
  border: 2px solid #0883ef;
  background-color: hsl(209, 100%, 91.8%);
  color: #0883ef;
  border-radius: 10px;
  transition: 0.15s ease;
  cursor: pointer;
}
.navbar button:hover {
  background-color: rgb(184, 222, 255);
}

.hamburger {
  cursor: pointer;
  display: inline !important;
  background-color: #0883ef;
  border-radius: 10px;
  padding: 11px 8px;
}

.bar {
  animation: nav-open 0.8s ease-out;
  z-index: 10000000;
}

.li-nav:hover {
  background-color: hsl(0, 0%, 80.4%) !important;
}

@keyframes nav-open {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.nav-bar li:hover {
  background-color: hsla(208, 93.5%, 48.4%, 0.05) !important;
  transition: 0.15s ease;
}

.navbar-responsive {
  z-index: 1000000;
  border-bottom: 1px solid rgb(231, 231, 231);
  background-color: rgba(255, 255, 255, 0.94);
  position: fixed;
  padding: 10px 20px;
  top: 0px;
  right: 0;
  left: 0;
  margin: 0 auto;
  align-items: center;
  display: none;
  justify-content: space-between;
  backdrop-filter: blur(5px);
}

.navbar-responsive button {
  font-weight: bold;
  padding: 5px 14px;
  border: 2px solid #0883ef;
  background-color: hsla(208, 93.5%, 48.4%, 0.1);
  color: #0883ef;
  border-radius: 10px;
  transition: 0.15s ease;
  cursor: pointer;
}
.navbar-responsive button:hover {
  background-color: rgba(8, 131, 239, 0.24);
}

@media (max-width: 1100px) {
  .navbar-responsive {
    display: flex;
  }
  .navbar {
    display: none;
  }
  .box-title h1 {
    font-size: 40px !important;
  }
  #first-image {
    width: 44% !important;
    max-width: 44% !important;
  }
}

@media (max-width: 900px) {
  .section1,
  .section2,
  .section3 {
    display: block !important;
    padding: 40px 20px !important;
  }
  #first-image {
    display: table;
    margin: 0 auto;
    width: 60% !important;
    max-width: 60% !important;
  }
  #first-image2{
    display: table;
    margin: 0 auto;
    width: 78% !important;
    max-width: 78% !important;
  }

  #first-image3 {
    display: table;
    margin: 0 auto;
    width: 85% !important;
    max-width: 85% !important;
  }
  .box-title,
  .box-title2,
  .box-title3 {
    width: 100% !important;
  }
  .box-title h1 {
    font-size: 35px !important;
    text-align: center;
  }
  .box-title2 h2,
  .box-title3 h2 {
    margin-top: 15px;
    font-size: 35px !important;
    text-align: center;
  }
  .box-title p {
    text-align: center;
  }
  .box-title2 p {
    text-align: center;
  }
  .box-title3 p {
    text-align: center;
  }
  .button-about {
    display: table;
    margin: 0 auto;
    margin-bottom: 55px;
  }
  .button-more {
    display: table;
    margin: 0 auto;
    margin-bottom: 55px;
  }
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 4%;
}

.service-card {
  background: hsla(208, 92.7%, 48%, 0.13);
  border: 2px solid #0883ef;
  border-radius: 24px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(8, 131, 239, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(8, 131, 239, 0.2);
}

.card-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(8, 131, 239, 0.1) 0%,
    rgba(8, 131, 239, 0.2) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px dashed #0883ef;
  transition: all 0.3s ease;
}

.card-icon-img {
  width: 60px;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  transform: rotate(5deg) scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(8, 131, 239, 0.15) 0%,
    rgba(8, 131, 239, 0.25) 100%
  );
}

.card-title {
  color: #0883ef;
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.card-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #0883ef;
  border-radius: 3px;
  margin: 0 auto;
  right: 0;
  transition: all 0.3s ease;
}

.service-card:hover .card-title::after {
  width: 70px;
}

.card-description {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px 20px;
  }
}

@media (max-width: 500px) {
  #first-image {
    display: table;
    margin: 0 auto;
    width: 82% !important;
    max-width: 82% !important;
  }
}

.section1 {
  border-radius: 30px;
  padding: 65px 60px;
  background-color: #19191a;
  margin: 0 4%;
  align-items: center !important;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}

.section3 {
  border-radius: 30px;
  padding: 65px 60px;
  margin: 0 4%;
  align-items: center !important;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
#first-image {
  filter: drop-shadow(0px 0px 80px rgba(8, 131, 239, 0.62));
  max-width: 54%;
  width: 54%;
}

.box-title {
  width: 55%;
  margin-left: 40px;
}
.box-title3 {
  width: 55%;
  margin-left: 40px;
}
.box-title h1 {
  font-weight: 900;
  color: white;
  font-size: 45px;
  font-family: iranyekan;
  line-height: 1.4 !important;
  margin-bottom: 10px;
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(80px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.box-title3 h2 {
  font-weight: 900;
  font-size: 38px;
  font-family: iranyekan;
  line-height: 1.4 !important;
  margin-bottom: 10px;
}
.box-title p {
  animation: slideUp 1.5s ease-out forwards;
  color: rgba(255, 255, 255, 0.73);
  font-size: 14px;
}

.box-title3 p {
  color: rgba(0, 0, 0, 0.73);
  font-size: 14px;
}

.button-about {
  animation: btn-see 2.8s ease-out forwards;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid #0883ef;
  background-color: hsla(208, 93.5%, 48.4%, 0.1);
  color: #0883ef;
  padding: 8px 30px;
  font-weight: bold;
  font-size: 15px;
  margin-top: 18px;
  font-family: iranyekan;
  transition: 0.15s ease;
}
.button-about:hover {
  background-color: hsla(208, 93.5%, 48.4%, 0.18);
}

@keyframes btn-see {
  0% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.button-more {
  cursor: pointer;
  border-radius: 12px;
  border: 2px solid #0883ef;
  background-color: hsla(208, 93.5%, 48.4%, 0.1);
  color: #0883ef;
  padding: 8px 30px;
  font-weight: bold;
  font-size: 15px;
  margin-top: 20px;
  font-family: iranyekan;
  transition: 0.15s ease;
}
.button-more:hover {
  color: white;
  background-color: #0883ef;
}

.section2 {
  border-radius: 30px;
  padding: 65px 60px;
  background-color: rgb(255, 255, 255);
  margin: 0 4%;
  align-items: center !important;
  display: flex;
  justify-content: space-between;
}

#first-image3 {
  filter: drop-shadow(0px 0px 60px rgba(8, 131, 239, 0.62));
  max-width: 52%;
  width: 52%;
}
#first-image2 {
  filter: drop-shadow(0px 0px 60px rgba(8, 131, 239, 0.62));
  max-width: 36%;
  width: 36%;
}

.box-title2 {
  width: 55%;
}

.box-title2 h2 {
  font-weight: 900;
  color: black;
  font-size: 38px;
  font-family: iranyekan;
  line-height: 1.4 !important;
  margin-bottom: 10px;
}
.box-title2 p {
  color: rgba(0, 0, 0, 0.73);
  font-size: 14px;
}

.box-pricing {
  background-color: rgb(244, 244, 244);
  padding: 60px 0px;
}

.pricing-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.pricing-box {
  background: white;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(8, 131, 239, 0.13);
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  width: 250px;
  overflow: hidden;
}

.pricing-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(8, 131, 239, 0.23);
}

.pricing-box.popular {
  border: 2px solid #0883ef;
}

.popular-tag {
  position: absolute;
  top: 15px;
  left: -30px;
  background-color: #0883ef;
  color: white;
  padding: 5px 30px;
  transform: rotate(-45deg);
  font-size: 12px;
  font-weight: bold;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 700;
  color: #0883ef;
  margin-bottom: 5px;
}

.pricing-period {
  color: #777;
  font-size: 14px;
}

.pricing-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
}

.feature-item i {
  margin-left: 10px;
  color: #0883ef;
}

.pricing-button {
  display: block;
  padding: 12px;
  background: linear-gradient(to right, #0883ef, #1aa0ff);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.pricing-button:hover {
  background: linear-gradient(to right, #0669c5, #0883ef);
  box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
}

.pricing-box.popular .pricing-button {
  background: linear-gradient(to right, #0883ef, #1aa0ff);
}
.pricing-box.popular .pricing-button:hover {
  background: linear-gradient(to right, #0669c5, #0883ef);
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
}

.blog-section {
  background-color: rgb(244, 244, 244);
}
.container {
  margin: 0 4%;
  padding: 80px 0;
}
.section-header {
  text-align: center;
}

/* گرید مقالات */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* کارت مقاله */
.blog-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 131, 239, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(8, 131, 239, 0.2);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0883ef;
  color: #fff;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}

.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: #777;
}

.card-meta i {
  margin-left: 5px;
  color: #0883ef;
}

.card-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.read-more {
  display: inline-block;
  color: #0883ef;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more i {
  margin-right: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #0669c5;
}

.read-more:hover i {
  transform: translateX(-5px);
}

/* دکمه مشاهده همه */
.view-all {
  text-align: center;
}

.view-all a {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #0883ef, #1aa0ff);
  color: #fff;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(8, 131, 239, 0.3);
}

.view-all a:hover {
  background: linear-gradient(to right, #0669c5, #0883ef);
  box-shadow: 0 8px 20px rgba(8, 131, 239, 0.4);
  transform: translateY(-3px);
}

.view-all i {
  margin-right: 5px;
}

/* رسپانسیو */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
    font-family: iranyekan;
  }

  .section-header p {
    font-size: 16px;
    font-family: iranyekan;
  }
}

.container-people {
  padding: 60px 0px;
}

.slider-container {
  margin: 0 4%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #000;
}

.section-title span {
  color: #0883ef;
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #0883ef, rgb(18, 76, 134));
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 50px;
}

/* Testimonial Card */
.testimonial-card {
  background-color: white;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(8, 131, 239, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  margin: 0 auto;
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.7s ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translateX(6%);
    opacity: 0;
  }

  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

.quote-icon {
  font-size: 2rem;
  color: rgba(8, 131, 239, 0.52);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0883ef;
  margin-left: 15px;
}

.client-details {
  text-align: right;
}

.client-name {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 5px;
}

.client-job {
  font-size: 0.9rem;
  color: #7f8c8d;
}

.rating {
  color: #f39c12;
  font-size: 1.2rem;
  margin-top: 15px;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.slider-btn {
  background: #0883ef;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .next-btn{
    float: left;
}
.prev-btn{
    float: right;
} */
.slider-btn:hover {
  background: rgb(7, 110, 200);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  margin: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #bdc3c7;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #0883ef;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .client-info {
    flex-direction: column;
    text-align: center;
  }

  .client-img {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .client-details {
    text-align: center;
  }
}

.form-box {
  background-color: rgb(244, 244, 244);
  padding: 80px 0;
}

.form-container {
  margin: 0 4%;
  justify-content: center;
  display: flex;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 0px 30px rgba(8, 131, 239, 0.23);
  overflow: hidden;
  transition: all 0.3s ease;
}

.image-side {
  flex: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.21)),
    url("images/back-color.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.image-side::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #3a7bd5, #00d2ff);
  opacity: 0.6;
  z-index: 0;
}

.image-content {
  position: relative;
  z-index: 1;
}

.image-side h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.image-side p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.form-side {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-header p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #ecf0f1;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  background-color: #f8f9fa;
}

.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #ecf0f1;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  background-color: #f8f9fa;
  height: 200px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #3498db;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

.submit-btn {
  background: linear-gradient(to right, #0883ef, #1aa0ff);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(to right, #0669c5, #0883ef);
  box-shadow: 0 6px 20px rgba(58, 123, 213, 0.4);
  transform: translateY(-2px);
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.google {
  background-color: #db4437;
}

.form-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.form-footer a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .image-side {
    min-height: 250px;
    padding: 30px;
  }

  .form-side {
    padding: 30px;
  }
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  margin: 0 4%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0px 8px rgba(58, 123, 213, 0.29);
}

.question-box {
  padding: 18px 20px 18px 50px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.1s ease;
  color: #000;
}

.question-box:hover {
  color: #0883ef;
}

.faq-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  transition: transform 0.3s ease;
  color: #3498db;
}

.faq-item.active .faq-icon {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: 0.15s ease-out;
  text-align: right;
  color: #555;
  background-color: #fff;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.footer {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #0883ef;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: #0883ef;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #0883ef;
  transform: translateX(-5px);
}

.footer-col .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-col .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-col .social-links a:hover {
  background: #0883ef;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  padding: 0 20px;
  color: #aaa;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-col {
    margin-bottom: 30px;
  }
}

#backToTopBtn {
  width: 45px;
  height: 45px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #0883ef;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.15s;
}

#backToTopBtn:hover {
  background-color: rgb(14, 107, 207);
}
