/* -------------------------------
         About Sec - 1
------------------------------- */

.about-sec-1 {
  padding: 80px 0;
  background: #fff;
}

.about-sec-1-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/*====================================
            Left
====================================*/

.about-sec-1-tag {
  display: inline-flex;
  align-items: center;

  padding: 8px 18px;

  background: rgba(47, 128, 237, 0.08);
  color: #2f80ed;

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 600;
}

.about-sec-1-title {
  margin-top: 22px;

  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;

  color: #222;
}

.about-sec-1-description {
  margin-top: 24px;

  color: #666;

  font-size: 1rem;
  line-height: 1.9;
}

.about-sec-1-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-top: 35px;
}

.about-sec-1-highlight {
  display: flex;
  align-items: center;
  gap: 14px;

  color: #444;

  font-weight: 500;
}

.about-sec-1-highlight i {
  color: #22c55e;
  font-size: 1.1rem;
}

.about-sec-1-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 40px;

  height: 56px;
  padding: 0 32px;

  background: #2f80ed;
  color: #fff;

  border-radius: 14px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.about-sec-1-btn:hover {
  background: #1f6dd1;

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(47, 128, 237, 0.25);
}

/*====================================
            Right
====================================*/

.about-sec-1-image-wrapper {
  position: relative;
}

.about-sec-1-image {
  overflow: hidden;

  border-radius: 28px;
  max-height: 600px;
}

.about-sec-1-image img {
  width: 100%;
  display: block;

  aspect-ratio: 4/5;
  object-fit: cover;

  transition: 0.4s;
}

.about-sec-1-image:hover img {
  transform: scale(1.05);
}

/* Floating Card */

.about-sec-1-floating-card {
  position: absolute;

  left: -30px;
  bottom: 40px;

  width: 240px;

  padding: 28px;

  background: #fff;

  border-radius: 22px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-sec-1-floating-number {
  display: block;

  font-size: 3rem;
  font-weight: 700;

  color: #2f80ed;
}

.about-sec-1-floating-card p {
  margin-top: 8px;

  color: #666;

  line-height: 1.7;
}

/*====================================
        Responsive
====================================*/

@media (max-width: 992px) {
  .about-sec-1-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-sec-1-floating-card {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .about-sec-1 {
    padding: 60px 0;
  }

  .about-sec-1-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-sec-1-title {
    font-size: 1.8rem;
  }

  .about-sec-1-floating-card {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}







/* -------------------------------
         About Sec - 2
------------------------------- */
.about-sec-2 {
  padding: 100px 0;
}

.about-sec-2-container {
  width: calc(100% - 40px);
  max-width: 1400px;

  margin: auto;
}

/*==========================
    Header
==========================*/

.about-sec-2-header {
  text-align: center;

  margin-bottom: 70px;
}

.about-sec-2-subtitle {
  color: var(--primary);

  font-size: 0.9rem;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-weight: 700;
}

.about-sec-2-title {
  margin-top: 18px;

  font-size: 2.8rem;

  color: var(--black);
}

/*==========================
    List
==========================*/

.about-sec-2-list {
  display: flex;

  flex-direction: column;
}

.about-sec-2-item {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  padding: 38px 10px;

  text-decoration: none;

  color: inherit;

  border-bottom: 1px solid var(--border);

  transition: 0.35s;
}

.about-sec-2-item:first-child {
  border-top: 1px solid var(--border);
}

.about-sec-2-item:hover {
  padding-left: 25px;

  background: #f8fbfc;
}

.about-sec-2-left {
  display: flex;

  align-items: flex-start;

  gap: 35px;
}

.about-sec-2-number {
  font-size: 1.6rem;

  color: var(--primary);

  font-weight: 700;

  min-width: 45px;
}

.about-sec-2-name {
  font-size: 1.7rem;

  color: var(--black);
}

.about-sec-2-text {
  margin-top: 10px;

  max-width: 700px;

  line-height: 1.8;

  color: var(--text);
}

.about-sec-2-arrow {
  font-size: 1.2rem;

  color: var(--primary);

  transition: 0.35s;
  display: none;
}

.about-sec-2-item:hover .about-sec-2-arrow {
  transform: translateX(10px);
}

/*==========================
    Responsive
==========================*/

@media (max-width: 768px) {
  .about-sec-2-arrow {
    display: none;
  }

  .about-sec-2-left {
    flex-direction: column;

    gap: 15px;
  }

  .about-sec-2-title {
    font-size: 2rem;
  }

  .about-sec-2-name {
    font-size: 1.4rem;
  }
}



/* -------------------------------
         About Sec - 3
------------------------------- */

.about-sec-3 {
  padding: 80px 0;
  background: #fff;
}

.about-sec-3-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.about-sec-3-content {
  max-width: 700px;
}

.about-sec-3-tag {
  display: inline-flex;
  align-items: center;

  padding: 8px 18px;

  background: rgba(47, 128, 237, 0.08);
  color: #2f80ed;

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 600;
}

.about-sec-3-title {
  margin-top: 22px;

  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;

  color: #222;
}

.about-sec-3-description {
  margin-top: 22px;

  color: #666;

  line-height: 1.8;
}

.about-sec-3-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.about-sec-3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  height: 56px;
  padding: 0 32px;

  border-radius: 14px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.about-sec-3-btn-primary {
  background: #2f80ed;
  color: #fff;
}

.about-sec-3-btn-primary:hover {
  background: #1f6dd1;
  transform: translateY(-3px);
}

.about-sec-3-btn-secondary {
  border: 1px solid #1f6dd1;
  color: #1f6dd1;
  background: transparent;
}

.about-sec-3-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .about-sec-3-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .about-sec-3 {
    padding: 60px 0;
  }

  .about-sec-3-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-sec-3-title {
    font-size: 1.8rem;
  }

  .about-sec-3-actions {
    width: 100%;
    flex-direction: column;
  }

  .about-sec-3-btn {
    width: 100%;
  }
}
