* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 0;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  background: #f5f5f5;
}

.custom-emoji {
  height: 40px;
  width: 40px;
  color: #2563eb;
}

#services {
  scroll-margin-top: 250px;
}

#plans {
  scroll-margin-top: 250px;
}

/* NAVBAR */
.navbar {
  width: 100%;
  height: 90px;
  background: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 60px;

  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 70px;
  object-fit: contain;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

/* ACTIVE LINE */
.nav-links a.active {
  color: #1d5cff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 100%;
  height: 3px;

  background: #1d5cff;
  border-radius: 10px;
}

/* BUTTON */
.nav-btn {
  padding: 14px 28px;
  border: none;
  background: #1d5cff;
  color: white;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #0047e6;
}

/* MENU ICON */
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #111;
}

/* ========================= */
/* SMALL LAPTOP */
/* ========================= */

@media (max-width: 1200px) {
  .navbar {
    padding: 0 40px;
  }

  .nav-links {
    gap: 30px;
  }

  .nav-btn {
    padding: 12px 22px;
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .navbar {
    padding: 0 25px;
    height: 80px;
  }

  .logo img {
    height: 60px;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .nav-btn {
    padding: 11px 18px;
    font-size: 14px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

/* PHONE MENU */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 90px;
    right: -100%;

    width: 260px;
    height: auto;

    background: white;

    flex-direction: column;
    align-items: flex-start;
    gap: 25px;

    padding: 30px;

    border-radius: 20px 0 0 20px;

    box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.12);

    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0px;
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-links a {
    font-size: 17px;
  }
}

/* ========================= */
/* MIN PHONE */
/* ========================= */

@media (max-width: 480px) {
  .navbar {
    padding: 0 15px;
    height: 70px;
  }

  .logo img {
    height: 48px;
  }

  .menu-btn {
    font-size: 24px;
  }

  .nav-links {
    top: 70px;
    gap: 24px;
    padding: 25px 0;
  }

  .nav-links a {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------ */

.hero {
  width: 100%;
  min-height: 80vh;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 7%;

  background: #fafafa;

  overflow: hidden;
}

/* LEFT */
.hero-left {
  width: 50%;
}

.hero-tag {
  display: inline-block;

  padding: 12px 22px;

  background: #edf3ff;
  color: #2563eb;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 30px;
}

.hero-left h1 {
  font-size: 68px;
  line-height: 1.15;
  color: #081c3a;

  font-weight: 800;

  margin-bottom: 25px;
}

.hero-left h1 span {
  color: #2563eb;
}

.hero-left p {
  width: 90%;

  color: #6b7280;

  font-size: 20px;
  line-height: 1.8;

  margin-bottom: 40px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;

  margin-bottom: 60px;
}

.primary-btn {
  padding: 18px 35px;

  border: none;
  border-radius: 14px;

  background: #2563eb;
  color: white;

  font-size: 17px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.primary-btn:hover {
  background: #1149c7;
}

.secondary-btn {
  padding: 18px 35px;

  border-radius: 14px;
  border: 2px solid #2563eb;

  background: transparent;
  color: #2563eb;

  font-size: 17px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.secondary-btn:hover {
  background: #2563eb;
  color: white;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.stat-box h2 {
  color: #081c3a;
  font-size: 34px;
  margin-bottom: 8px;
}

.stat-box span {
  color: #6b7280;
  font-size: 15px;
}

/* RIGHT */
.hero-right {
  width: 48%;

  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 750px;
}

/* ========================= */
/* LAPTOP */
/* ========================= */

@media (max-width: 1400px) {
  .hero-left h1 {
    font-size: 56px;
  }

  .hero-left p {
    font-size: 18px;
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;

    gap: 60px;

    padding-top: 120px;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    width: 100%;
  }

  .hero-left p {
    width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-left h1 {
    font-size: 52px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .hero {
    padding: 100px 6% 60px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-box h2 {
    font-size: 28px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 34px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 10px 18px;
  }

  .hero-left p {
    font-size: 15px;
  }

  .stat-box span {
    font-size: 13px;
  }
}

/* --------------------------------------------------------------- */
.trusted-section {
  width: 100%;

  background: #e3e6f0;

  padding: 35px 7%;

  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
}

/* TITLE */
.trusted-title {
  text-align: center;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;

  color: #9ca3af;

  margin-bottom: 35px;
}

/* COMPANIES */
.trusted-companies {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  flex-wrap: wrap;
}

/* COMPANY */
.company {
  color: #9ca3af;

  font-size: 38px;
  font-weight: 700;

  opacity: 0.8;

  transition: 0.3s;
  white-space: nowrap;
}

.company:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .trusted-companies {
    justify-content: center;
    gap: 35px;
  }

  .company {
    font-size: 30px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .trusted-section {
    padding: 30px 5%;
  }

  .trusted-title {
    font-size: 11px;
    margin-bottom: 28px;
  }

  .trusted-companies {
    gap: 28px;
  }

  .company {
    font-size: 24px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .trusted-companies {
    gap: 22px;
  }

  .company {
    font-size: 20px;
  }
}

/* --------------------------------------------------------------- */
.services-section {
  width: 100%;

  padding: 50px 7%;

  background: #ffffff;
}

/* TOP */
.services-top {
  text-align: center;

  margin-bottom: 70px;
}

.section-tag {
  color: #2563eb;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-top h2 {
  font-size: 52px;
  color: #081c3a;

  margin: 15px 0;
}

.services-top p {
  color: #6b7280;

  font-size: 18px;
}

/* CONTAINER */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* CARD */
.service-card {
  position: relative;

  background: white;

  border: 1px solid #ececec;
  border-radius: 22px;

  padding: 40px 30px;

  transition: 0.3s;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ICON */
.service-icon {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 38px;

  border-radius: 18px;

  background: #edf3ff;

  margin-bottom: 28px;
}

/* TITLE */
.service-card h3 {
  font-size: 31px;

  line-height: 1.3;

  color: #081c3a;

  margin-bottom: 20px;
}

/* TEXT */
.service-card p {
  color: #6b7280;

  font-size: 17px;
  line-height: 1.8;

  margin-bottom: 35px;
}

/* LINK */
.service-card a {
  text-decoration: none;

  position: absolute;
  bottom: 35px;
  left: 30px;

  color: #2563eb;

  font-size: 17px;
  font-weight: 700;

  transition: 0.3s;
}

.service-card a:hover {
  letter-spacing: 1px;
  color: #ff610a;
}

/* ========================= */
/* SMALL LAPTOP */
/* ========================= */

@media (max-width: 1400px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .services-top h2 {
    font-size: 42px;
  }

  .services-container {
    gap: 25px;
  }

  .service-card h3 {
    font-size: 28px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .services-section {
    padding: 80px 5%;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .services-top h2 {
    font-size: 36px;
  }

  .services-top p {
    font-size: 16px;
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 15px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .services-top h2 {
    font-size: 30px;
  }

  .section-tag {
    font-size: 12px;
  }

  .service-icon {
    width: 65px;
    height: 65px;

    font-size: 32px;
  }

  .service-card {
    border-radius: 18px;
  }
}

/* ------------------------------------------------------------ */
.choose-section {
  width: 100%;

  padding: 35px 7%;

  background: #ffffff;

  border-top: 2px solid #e9e9e9;
}

/* MAIN */
.choose-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 50px;
}

/* LEFT */
.choose-left {
  min-width: 260px;
}

.choose-left h2 {
  font-size: 48px;
  line-height: 1.2;

  color: #081c3a;

  margin-bottom: 20px;
}

.choose-line {
  width: 160px;
  height: 4px;

  background: #2563eb;

  border-radius: 20px;
}

/* RIGHT */
.choose-right {
  flex: 1;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* ITEM */
.choose-item {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  padding-left: 20px;

  border-left: 1px solid #ececec;
}

/* ICON */
.choose-icon {
  font-size: 34px;
}

/* CONTENT */
.choose-content h3 {
  font-size: 24px;

  color: #081c3a;

  margin-bottom: 12px;
}

.choose-content p {
  color: #6b7280;

  font-size: 15px;
  line-height: 1.7;
}

/* ========================= */
/* LAPTOP */
/* ========================= */

@media (max-width: 1400px) {
  .choose-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .choose-container {
    flex-direction: column;
  }

  .choose-left h2 {
    font-size: 40px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .choose-section {
    padding: 60px 5%;
  }

  .choose-right {
    grid-template-columns: 1fr;
  }

  .choose-left h2 {
    font-size: 34px;
  }

  .choose-content h3 {
    font-size: 20px;
  }

  .choose-content p {
    font-size: 14px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .choose-left h2 {
    font-size: 28px;
  }

  .choose-item {
    padding-left: 15px;
  }

  .choose-icon {
    font-size: 28px;
  }
}

/* ------------------------------------------------------------ */
.pricing-section {
  width: 100%;

  padding: 30px 7%;

  background: #ffffff;
}

/* TOP */
.pricing-top {
  text-align: center;

  margin-bottom: 70px;
}

.pricing-tag {
  color: #2563eb;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1px;
}

.pricing-top h2 {
  font-size: 52px;

  color: #081c3a;

  margin: 15px 0;
}

.pricing-top p {
  color: #6b7280;

  font-size: 18px;
}

/* CONTAINER */
.pricing-container {
  display: flex;
  align-items: stretch;
  justify-content: center;

  gap: 35px;

  flex-wrap: wrap;
}

/* CARD */
.pricing-card {
  position: relative;

  width: 360px;

  background: white;

  border: 1px solid #ececec;
  border-radius: 24px;

  padding: 45px 35px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);

  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ACTIVE */
.active-plan {
  border: 2px solid #2563eb;
}

/* POPULAR */
.popular-tag {
  position: absolute;

  top: -14px;
  left: 50%;

  transform: translateX(-50%);

  background: #2563eb;
  color: white;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 700;
}

/* TITLE */
.pricing-card h3 {
  text-align: center;

  font-size: 30px;

  color: #081c3a;

  margin-bottom: 20px;
}

/* PRICE */
.price {
  text-align: center;

  font-size: 52px;
  font-weight: 800;

  color: #081c3a;

  margin-bottom: 12px;
}

.price span {
  font-size: 16px;
  color: #6b7280;
}

/* TEXT */
.plan-text {
  text-align: center;

  color: #6b7280;

  font-size: 16px;

  margin-bottom: 35px;
}

/* FEATURES */
.pricing-card ul {
  list-style: none;

  margin-bottom: 40px;
}

.pricing-card ul li {
  margin-bottom: 18px;

  color: #4b5563;

  font-size: 16px;
}

/* BUTTON */
.pricing-card button {
  width: 100%;

  padding: 16px;

  border-radius: 12px;
  border: 2px solid #2563eb;

  background: transparent;
  color: #2563eb;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

/* ACTIVE BUTTON */
.active-plan button {
  background: #2563eb;
  color: white;
}

.pricing-card button:hover {
  background: #2563eb;
  color: white;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .pricing-top h2 {
    font-size: 42px;
  }

  .pricing-card {
    width: 100%;
    max-width: 420px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 5%;
  }

  .pricing-top h2 {
    font-size: 36px;
  }

  .pricing-top p {
    font-size: 16px;
  }

  .pricing-card {
    padding: 40px 25px;
  }

  .price {
    font-size: 42px;
  }

  .pricing-card h3 {
    font-size: 26px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .pricing-top h2 {
    font-size: 30px;
  }

  .pricing-tag {
    font-size: 12px;
  }

  .price {
    font-size: 36px;
  }

  .pricing-card ul li {
    font-size: 15px;
  }
}

/* --------------------------------------------------------- */

.footer {
  width: 100%;

  background: #041a46;

  padding-top: 70px;

  color: white;
}

/* CONTAINER */
.footer-container {
  width: 100%;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;

  gap: 50px;

  padding: 0 7% 60px;
}

/* LOGO */
.footer-logo img {
  height: 80px;

  margin-bottom: 25px;
}

/* TEXT */
.footer-box p {
  color: rgba(255, 255, 255, 0.75);

  line-height: 1.9;

  font-size: 15px;
}

/* TITLE */
.footer-box h3 {
  font-size: 22px;

  margin-bottom: 25px;
}

/* LINKS */
.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 15px;
}

.footer-box ul li a {
  text-decoration: none;

  color: rgba(255, 255, 255, 0.75);

  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: white;

  padding-left: 5px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 15px;

  margin-top: 30px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: white;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #2563eb;

  border-color: #2563eb;
}

/* CONTACT */
.footer-contact p {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  margin-bottom: 20px;
}

.footer-contact i {
  margin-top: 5px;

  color: #60a5fa;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;

  padding: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }

  .footer-container {
    grid-template-columns: 1fr;

    gap: 45px;

    padding: 0 5% 50px;
  }

  .footer-box h3 {
    font-size: 20px;
  }

  .footer-box p,
  .footer-box ul li a {
    font-size: 14px;
  }

  .footer-social {
    margin-top: 25px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .footer-logo img {
    height: 48px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* ----------about us--------------- */
.about-section {
  width: 100%;
  min-height: 70vh;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 70px;

  padding: 50px 7%;

  background: rgb(240, 242, 243);
}

/* LEFT */
.about-left {
  width: 48%;
}

/* TAG */
.about-tag {
  display: inline-block;

  padding: 12px 22px;

  background: #d2d7e2;
  color: #2563eb;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 30px;
}

/* TITLE */
.about-left h2 {
  font-size: 64px;
  line-height: 1.15;

  color: #081c3a;

  margin-bottom: 30px;
}

.about-left h2 span {
  color: #2563eb;
}

/* TEXT */
.about-left p {
  color: #6b7280;

  font-size: 20px;
  line-height: 1.9;

  margin-bottom: 28px;
}

/* BUTTON */
.about-btn {
  margin-top: 15px;

  padding: 18px 34px;

  border: none;
  border-radius: 14px;

  background: #2563eb;
  color: white;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.about-btn:hover {
  background: #1149c7;
}

/* RIGHT */
.about-right {
  width: 50%;
}

.about-right img {
  width: 100%;

  border-radius: 80px;

  object-fit: cover;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ========================= */
/* SMALL LAPTOP */
/* ========================= */

@media (max-width: 1400px) {
  .about-left h2 {
    font-size: 54px;
  }

  .about-left p {
    font-size: 18px;
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .about-section {
    flex-direction: column;

    text-align: center;

    gap: 60px;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-left h2 {
    font-size: 48px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .about-section {
    padding: 80px 5%;
  }

  .about-left h2 {
    font-size: 40px;
  }

  .about-left p {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .about-left h2 {
    font-size: 32px;
  }

  .about-tag {
    font-size: 12px;

    padding: 10px 18px;
  }

  .about-right img {
    border-radius: 20px;
  }
}
/* -------------------------------------------------- */
.mission-section {
  width: 100%;

  padding: 50px 7%;

  background: #ffffff;
}

/* ========================= */
/* TOP */
/* ========================= */

.mission-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 40px;

  margin-bottom: 45px;
}

/* BOX */
.mission-box {
  display: flex;
  align-items: flex-start;

  gap: 25px;

  padding: 20px 40px;

  border: 1px solid #ececec;
  border-radius: 24px;

  background: #fff;
}

/* ICON */
.mission-icon {
  width: clamp(85px, 8vw, 85px);

  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: #edf3ff;
  flex-shrink: 0;
}

/* CONTENT */
.mission-content h3 {
  font-size: 30px;

  color: #081c3a;

  margin-bottom: 18px;
}

.mission-content p {
  color: #6b7280;

  font-size: 14px;
  line-height: 1.8;
}

/* ========================= */
/* STATS */
/* ========================= */

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 0;

  border: 1px solid #b3b1b1;
  border-radius: 24px;

  overflow: hidden;
}

/* BOX */
.stats-box {
  padding: 20px 35px;

  background: rgb(224, 231, 233);

  border-right: 1px solid #b3b1b1;
}

.stats-box:last-child {
  border-right: none;
}

/* ICON */
.stats-icon {
  font-size: 26px;

  margin-bottom: 10px;
}

/* NUMBER */
.stats-box h2 {
  font-size: 32px;

  color: #081c3a;

  margin-bottom: 10px;
}

/* TITLE */
.stats-box h4 {
  font-size: 14px;

  color: #081c3a;

  margin-bottom: 12px;
}

/* TEXT */
.stats-box p {
  color: #6b7280;

  font-size: 14px;
  line-height: 1.8;
}

/* ========================= */
/* SMALL LAPTOP */
/* ========================= */

@media (max-width: 1400px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-box:nth-child(2) {
    border-right: none;
  }

  .stats-box:nth-child(1),
  .stats-box:nth-child(2) {
    border-bottom: 1px solid #ececec;
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .mission-top {
    grid-template-columns: 1fr;
  }

  .mission-content h3 {
    font-size: 26px;
  }

  .mission-content p {
    font-size: 12px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .mission-section {
    padding: 80px 5%;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stats-box {
    border-right: none;
    border-bottom: 1px solid #ececec;
  }

  .stats-box:last-child {
    border-bottom: none;
  }

  .mission-box {
    flex-direction: column;
  }

  .mission-content h3 {
    font-size: 22px;
  }

  .stats-box h2 {
    font-size: 30px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .mission-box {
    padding: 30px;
  }

  .mission-icon {
    width: 70px;
    height: 70px;
  }

  .mission-content h3 {
    font-size: 20px;
  }

  .stats-box {
    padding: 35px 25px;
  }

  .stats-box h4 {
    font-size: 12px;
  }
}

/* --------------------------------------------------------- */
.why-section {
  width: 100%;

  padding: 50px 7%;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 80px;

  background: #ffffff;
}

/* LEFT */
.why-left {
  width: 38%;
}

/* TAG */
.why-tag {
  color: #2563eb;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
}

/* TITLE */
.why-left h2 {
  font-size: 56px;
  line-height: 1.2;

  color: #081c3a;

  margin: 20px 0 25px;
}

.why-left h2 span {
  color: #2563eb;
}

/* TEXT */
.why-left p {
  color: #6b7280;

  font-size: 17px;
  line-height: 1.9;

  margin-bottom: 35px;
}

/* BUTTON */
.why-btn {
  padding: 16px 32px;

  border: none;
  border-radius: 12px;

  background: #2563eb;
  color: white;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.why-btn:hover {
  background: #1149c7;
}

/* RIGHT */
.why-right {
  width: 58%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 35px 40px;
}

/* BOX */
.why-box {
  display: flex;
  align-items: flex-start;

  gap: 18px;
}

/* ICON */
.why-icon {
  min-width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf3ff;

  border-radius: 18px;

  font-size: 30px;
}

/* CONTENT */
.why-content h3 {
  font-size: 24px;

  color: #081c3a;

  margin-bottom: 12px;
}

.why-content p {
  color: #6b7280;

  font-size: 15px;
  line-height: 1.8;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .why-section {
    flex-direction: column;

    gap: 60px;
  }

  .why-left,
  .why-right {
    width: 100%;
  }

  .why-left h2 {
    font-size: 46px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .why-section {
    padding: 80px 5%;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 38px;
  }

  .why-left p {
    font-size: 15px;
  }

  .why-content h3 {
    font-size: 20px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .why-left h2 {
    font-size: 32px;
  }

  .why-icon {
    min-width: 60px;
    height: 60px;

    font-size: 26px;
  }

  .why-btn {
    width: 100%;
  }
}
/* ---------------------------------------------------------- */
.team-section {
  width: 100%;

  padding: 50px 7%;

  background: #ffffff;
}

/* TOP */
.team-top {
  text-align: center;

  margin-bottom: 70px;
}

.team-tag {
  color: #2563eb;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 1px;
}

.team-top h2 {
  font-size: 52px;

  color: #081c3a;

  margin: 18px 0;
}

.team-top p {
  color: #6b7280;

  font-size: 17px;
}

/* CONTAINER */
.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* CARD */
.team-card {
  background: white;

  border: 1px solid #ececec;
  border-radius: 24px;

  padding: 18px;

  text-align: center;

  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.team-card img {
  width: 80%;

  object-fit: cover;

  border-radius: 18px;

  margin-bottom: 24px;
}

/* NAME */
.team-card h3 {
  font-size: 28px;

  color: #081c3a;

  margin-bottom: 10px;
}

/* ROLE */
.team-card span {
  color: #6b7280;

  font-size: 16px;
}

/* SOCIAL */
.team-social {
  display: flex;
  justify-content: center;

  gap: 14px;

  margin-top: 28px;
}

.team-social a {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #edf3ff;

  color: #2563eb;

  text-decoration: none;

  font-size: 18px;

  transition: 0.3s;
}

.team-social a:hover {
  background: #2563eb;
  color: white;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 1200px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .team-section {
    padding: 80px 5%;
  }

  .team-container {
    grid-template-columns: 1fr;
  }

  .team-top h2 {
    font-size: 36px;
  }

  .team-card h3 {
    font-size: 24px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .team-top h2 {
    font-size: 30px;
  }

  .team-card img {
    height: 240px;
  }
}

/* ---------contact us----------------- */
.contact-section {
  width: 100%;

  padding: 50px 7%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  background: #ffffff;
}

/* LEFT */
.contact-left {
  width: 42%;
}

/* TAG */
.contact-tag {
  display: inline-block;

  padding: 10px 20px;

  background: #edf3ff;
  color: #2563eb;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 700;

  margin-bottom: 30px;
}

/* TITLE */
.contact-left h2 {
  font-size: 58px;
  line-height: 1.2;

  color: #081c3a;

  margin-bottom: 28px;
}

.contact-left h2 span {
  color: #2563eb;
}

/* TEXT */
.contact-left p {
  color: #6b7280;

  font-size: 17px;
  line-height: 1.9;

  margin-bottom: 40px;
}

/* INFO */
.contact-info {
  display: flex;
  gap: 25px;

  margin-bottom: 35px;
}

.info-box {
  display: flex;
  align-items: center;

  gap: 16px;
}

.info-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf3ff;

  border-radius: 16px;

  font-size: 26px;
}

.info-box h4 {
  font-size: 18px;

  color: #081c3a;

  margin-bottom: 6px;
}

.info-box span {
  color: #6b7280;

  font-size: 15px;
}

/* SUPPORT */
.support-box {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  background: #f8fbff;

  border-radius: 22px;
}

.support-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf3ff;

  border-radius: 16px;

  font-size: 26px;
}

.support-box h4 {
  font-size: 20px;

  color: #081c3a;

  margin-bottom: 8px;
}

.support-box p {
  margin: 0;

  font-size: 15px;
}

/* RIGHT */
.contact-right {
  width: 45%;

  padding: 45px;

  border: 1px solid #ececec;
  border-radius: 28px;

  background: white;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-right h3 {
  font-size: 38px;

  color: #081c3a;

  margin-bottom: 15px;
}

.contact-right p {
  color: #6b7280;

  font-size: 16px;

  margin-bottom: 35px;
}

/* FORM */
.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-bottom: 22px;
}

/* INPUT */
.input-box {
  display: flex;
  flex-direction: column;
}

.input-box label {
  font-size: 15px;
  font-weight: 600;

  color: #081c3a;

  margin-bottom: 10px;
}

.input-box input,
.input-box textarea {
  width: 100%;

  padding: 18px;

  border: 1px solid #e5e7eb;
  border-radius: 14px;

  font-size: 15px;

  outline: none;

  transition: 0.3s;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: #2563eb;

  box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

.input-box textarea {
  height: 160px;

  resize: none;
}

/* BUTTON */
.send-btn {
  width: 100%;

  padding: 18px;

  border: none;
  border-radius: 14px;

  background: #2563eb;
  color: white;

  font-size: 17px;
  font-weight: 700;

  cursor: pointer;

  margin-top: 10px;

  transition: 0.3s;
}

.send-btn:hover {
  background: #1149c7;

  transform: translateY(-2px);
}

/* PRIVACY */
.privacy-text {
  text-align: center;

  margin-top: 20px;

  color: #6b7280;

  font-size: 14px;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left h2 {
    font-size: 46px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 5%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
  }

  .contact-left h2 {
    font-size: 38px;
  }

  .contact-right {
    padding: 30px;
  }

  .contact-right h3 {
    font-size: 30px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .contact-left h2 {
    font-size: 32px;
  }

  .contact-tag {
    font-size: 12px;
  }

  .contact-right {
    padding: 25px;
  }

  .send-btn {
    font-size: 15px;
  }
}

/* --------------------------------------------------------- */
.features-section {
  width: 100%;

  padding: 40px 7%;

  background: #ffffff;
}

/* CONTAINER */
.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border: 1px solid #b3b1b1;
  border-radius: 24px;

  overflow: hidden;

  background: rgb(224, 231, 233);
}

/* BOX */
.feature-box {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  padding: 35px 30px;

  border-right: 1px solid #b3b1b1;

  transition: 0.3s;
}

.feature-box:last-child {
  border-right: none;
}

.feature-box:hover {
  background: #f8fbff;
}

/* ICON */
.feature-icon {
  min-width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf3ff;

  border-radius: 16px;

  font-size: 28px;
}

/* CONTENT */
.feature-content h3 {
  font-size: 22px;

  color: #081c3a;

  margin-bottom: 10px;
}

.feature-content p {
  color: #6b7280;

  font-size: 15px;
  line-height: 1.8;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-box:nth-child(2) {
    border-right: none;
  }

  .feature-box:nth-child(1),
  .feature-box:nth-child(2) {
    border-bottom: 1px solid #ececec;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .features-section {
    padding: 60px 5%;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-box {
    border-right: none;
    border-bottom: 1px solid #ececec;
  }

  .feature-box:last-child {
    border-bottom: none;
  }

  .feature-content h3 {
    font-size: 20px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .feature-box {
    padding: 28px 22px;
  }

  .feature-icon {
    min-width: 52px;
    height: 52px;

    font-size: 24px;
  }

  .feature-content h3 {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 14px;
  }
}

/* --------------------------------------------------------- */
.office-faq-section {
  width: 100%;

  padding: 50px 7%;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 70px;

  background: #ffffff;
}

/* LEFT */
.office-left {
  width: 45%;
}

/* TAG */
.office-tag,
.faq-tag {
  color: #2563eb;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 1px;
}

/* TITLE */
.office-left h2,
.faq-right h2 {
  font-size: 52px;
  line-height: 1.2;

  color: #081c3a;

  margin: 20px 0 25px;
}

.office-left h2 span,
.faq-right h2 span {
  color: #2563eb;
}

/* TEXT */
.office-left p {
  color: #6b7280;

  font-size: 17px;
  line-height: 1.9;

  margin-bottom: 35px;
}

/* OFFICE CARD */
.office-card {
  padding: 35px;

  border: 1px solid #ececec;
  border-radius: 24px;

  background: white;

  transition: 0.3s;
}

.office-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* ICON */
.office-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf3ff;

  border-radius: 18px;

  font-size: 28px;

  margin-bottom: 25px;
}

/* CARD TITLE */
.office-card h3 {
  font-size: 28px;

  color: #081c3a;

  margin-bottom: 18px;
}

/* CARD TEXT */
.office-card p {
  margin-bottom: 25px;

  font-size: 15px;
}

/* LINK */
.office-card a {
  text-decoration: none;

  color: #2563eb;

  font-size: 16px;
  font-weight: 700;
}

/* RIGHT */
.faq-right {
  width: 50%;
}

/* FAQ */
.faq-container {
  margin-top: 35px;
}

/* BOX */
.faq-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px 25px;

  border: 1px solid #ececec;
  border-radius: 16px;

  margin-bottom: 18px;

  cursor: pointer;

  transition: 0.3s;
}

.faq-box:hover {
  background: #f8fbff;

  border-color: #dbe7ff;
}

.faq-box h3 {
  font-size: 18px;

  color: #081c3a;

  font-weight: 600;
}

.faq-box span {
  font-size: 20px;

  color: #6b7280;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .office-faq-section {
    flex-direction: column;
  }

  .office-left,
  .faq-right {
    width: 100%;
  }

  .office-left h2,
  .faq-right h2 {
    font-size: 42px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .office-faq-section {
    padding: 80px 5%;
  }

  .office-left h2,
  .faq-right h2 {
    font-size: 34px;
  }

  .faq-box {
    padding: 18px 20px;
  }

  .faq-box h3 {
    font-size: 16px;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .office-left h2,
  .faq-right h2 {
    font-size: 30px;
  }

  .office-card {
    padding: 28px;
  }

  .office-card h3 {
    font-size: 24px;
  }

  .office-left p,
  .office-card p {
    font-size: 14px;
  }
}

/* FAQ */
.faq-container {
  margin-top: 35px;
}

/* ITEM */
.faq-item {
  border: 1px solid #ececec;
  border-radius: 18px;

  margin-bottom: 18px;

  overflow: hidden;

  background: white;
}

/* QUESTION */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 28px;

  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;

  color: #081c3a;
}

.faq-question span {
  font-size: 28px;

  color: #2563eb;

  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: 0.4s ease;
}

.faq-answer p {
  padding: 0 28px 24px;

  color: #6b7280;

  line-height: 1.8;

  font-size: 15px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
/* ---------------------------------------------------------- */
.cta-section {
  width: 100%;

  padding: 30px 7%;

  background: #ffffff;
}

/* CONTAINER */
.cta-container {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 20px 45px;

  border-radius: 28px;

  background: linear-gradient(to right, #f5f8ff, #eef4ff);

  overflow: hidden;

  position: relative;
}

/* BACKGROUND EFFECT */
.cta-container::after {
  content: "";

  position: absolute;

  right: -80px;
  top: -80px;

  width: 280px;
  height: 280px;

  background: radial-gradient(rgba(37, 99, 235, 0.08) 2px, transparent 2px);

  background-size: 12px 12px;
}

/* LEFT */
.cta-left {
  display: flex;
  align-items: center;

  gap: 25px;

  z-index: 2;
}

/* ICON */
.cta-icon {
  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: white;

  border-radius: 50%;

  font-size: 38px;

  color: #2563eb;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* CONTENT */
.cta-content h2 {
  font-size: 42px;

  color: #081c3a;

  margin-bottom: 12px;
}

.cta-content p {
  color: #6b7280;

  font-size: 17px;
}

/* RIGHT */
.cta-right {
  z-index: 2;
}

/* BUTTON */
.cta-btn {
  padding: 18px 38px;

  border: none;
  border-radius: 14px;

  background: #2563eb;
  color: white;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.cta-btn:hover {
  background: #1149c7;

  transform: translateY(-2px);
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;

    text-align: center;
  }

  .cta-left {
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 34px;
  }
}

/* ========================= */
/* PHONE */
/* ========================= */

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 5%;
  }

  .cta-container {
    padding: 35px 25px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
  }
}

/* ========================= */
/* SMALL PHONE */
/* ========================= */

@media (max-width: 480px) {
  .cta-icon {
    width: 75px;
    height: 75px;

    font-size: 30px;
  }

  .cta-content h2 {
    font-size: 24px;
  }
}

/* ------------animation-------------- */
.autoShow {
  animation: text-appear both;
  animation-timeline: view();
  animation-range: entry 0% cover 100vh;
}

@keyframes text-appear {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.divreveal {
  animation: imageReveal both;
  animation-timeline: view(80% 2%);
}

@keyframes imageReveal {
  from {
    filter: saturate(0) contrast(4) brightness(0.1) blur(2px);
    opacity: 0;
    scale: 0.95;
    translate: 0 4rem;
  }

  to {
    filter: none;
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

.rightShow {
  animation: rightShow both;
  animation-timeline: view();
  animation-range: entry 10% cover 40%;
}

@keyframes rightShow {
  from {
    opacity: 0;
    transform: translateX(120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.trusted-section {
  width: 100%;
  overflow: hidden;

  background: #e3e6f0;

  padding: 35px 0;

  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

/* moving line */
.trusted-companies {
  display: flex;
  align-items: center;

  gap: 100px;

  width: max-content;

  flex-wrap: nowrap;

  animation: marquee 25s linear infinite;
}

/* text */
.company {
  flex-shrink: 0;

  white-space: nowrap;

  color: #9ca3af;

  font-size: 38px;
  font-weight: 700;

  opacity: 0.8;
}

/* smooth infinite animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}
