@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-color: #1778f75c #f1f1f1;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #1778f75c;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1778f75c;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

body {
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
.navbar-wrapper {
  display: flex;
  align-items: center;
  height: 70px;
  justify-content: space-between;
  padding: 0px 10%;
  background: aliceblue;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  height: 60px;
}
.navbar li {
  height: 40px;
  display: flex;
  align-items: center;
}
.navbar li a {
  text-decoration: none;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #343c5c;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar .dropdown {
  position: relative;
  /* opacity: 0; */
}

.navbar .dropdown:hover ul {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.dropdown ul {
  /* display: none; */
  /* padding: 20px 0px; */
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 250px;
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all;
}

.dropdown ul li {
  padding: 12px;
  cursor: pointer;
  transition: 0.3s all;
}

.dropdown ul li:hover {
  background-color: #e8f1ff;
}
.dropdown ul li a {
  font-size: 15px !important;
}

.icon-wrapper {
  width: 200px;
}

.icon-wrapper img {
  width: 100%;
}

.header-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn-wrapper a {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.header-btn-wrapper .login-btn {
  color: #000000;
}

.header-btn-wrapper .free-trail-btn {
  color: #ffffff;
  background-color: #1777f7;
  border-radius: 12px;
  border: 1px solid transparent;
}

 .buy-btn {
  color: #1777f7;
  background-color: transparent;
  border: 1px solid #1777f7;
  border-radius: 12px;
}

/* HERO SECTION */

.wrapper {
  padding: 0px 10%;
}
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
  gap: 30px;
}

.hero-img-card {
  border-radius: 30px;
  height: 400px;
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 30px;
  gap: 10px;
}

.new-float {
  background-color: #ebf3f9;
  border-radius: 25px;
  padding: 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  width: fit-content;
}

.new-float span {
  border-radius: 15px;
  background-color: #1777f7;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
}

.hero-text-wrapper .header-text {
  font-size: 35px;
  font-weight: 500;
  color: #222222;
}

.hero-text-wrapper .sub-header-text {
  font-size: 15px;
  font-weight: 400;
  color: #343c5c;
  width: 90%;
  margin-bottom: 30px;
}

.read-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1777f7;
  font-size: 16px;
  font-weight: 500;
}
.read-more-btn svg {
  transition: 0.3s all;
}

.read-more-btn:hover svg {
  transform: translateX(2px);
}

/* ARTICLE SECTION START */

.artical-container {
  margin-top: 100px;
  padding-bottom: 70px;
}

.artical-header h1 {
  font-size: 25px;
  font-weight: 500;
  color: #222222;
}

.artical-header p {
  font-size: 13px;
  color: #343c5c99;
  margin-top: 5px;
}

.artical-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.artical-box {
  /* height: 500px; */
  padding: 20px;
  /* border-radius: 35px;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px; */
  transition: 0.3s all;
  padding-bottom: 30px;
  cursor: pointer;
}

.artical-box:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.artical-img-card {
  height: 210px;
}
.artical-img-card img {
  width: 100%;
  border-radius: 15px;
  height: 100%;
}
.artical-text-wrapper {
  padding-top: 20px;
}
.artical-box .header-text {
  font-size: 21px;
  font-weight: 500;
  color: #222222;
  margin-top: 12px;
}

.artical-box .sub-header-text {
  font-size: 13px;
  font-weight: 400;
  color: #343c5c;
  /* width: 90%; */
  margin-bottom: 30px;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit text to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em; /* Adjust based on your line height */
  line-height: 1.5em; /* Adjust according to your font size */
}
.artical-box .author {
  color: #ec9665;
  font-size: 13px;
  font-weight: 600;
}
.artical-box .date {
  color: #a8b3be;
  font-size: 13px;
}

.artical-box .read-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1777f7;
  font-size: 15px;
  font-weight: 500;
}

/* TESTIMONIAL START */
.testimonial-wrapper {
  background-color: #e8f1ff;
  padding: 100px 10%;
  position: relative;
}

.testimonial-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-rating {
  margin-top: auto;
}

.testimonial-rating i {
  color: gold;
}

.testimonial-text {
  font-size: 16px;
  color: #343c5c;
  line-height: 16px;
  font-weight: 400;
  line-height: 28px;
}

.user-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-wrapper .user {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f1ff;
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-details span:first-child {
  color: #222222;
}

.user-details span:last-child {
  color: rgba(0, 0, 0, 0.3);
  font-size: 13px;
}

.owl-nav.disabled {
  display: block;
}
.owl-dots {
  text-align: center;
  padding-top: 30px;
}
.owl-dots button {
  background: #fdb400 !important;
  border: 2px solid #d3deef !important;
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0px 5px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.owl-dots button.active {
  background: #1e40c8 !important;
  border-color: #1e40c8 !important;
}
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  left: 0px;
}
.owl-nav button {
  border: 0px;
  cursor: pointer;
  color: #d1dced !important;
  font-size: 40px !important;
  outline: none;
}
.owl-nav button:hover,
.owl-nav button.active {
  color: #1e40c8 !important;
}
.owl-nav button.owl-prev {
  float: left;
  position: relative;
  left: -80px;
  background: none;
}
.owl-nav button.owl-next {
  float: right;
  position: relative;
  right: -80px;
  background: none;
}

/* DOCUMENT PAGE STYLE */

.document-wrapper {
  display: flex;
  width: 100%;
  border: 1px solid #ddd;
  height: calc(100vh - 70px);
  overflow: hidden;
}
.left-side {
  width: 20%;
  padding-top: 30px;
}

.middle-side {
  flex: 1;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  overflow: auto;
  scroll-behavior: smooth;
  padding: 15px 40px;
}

.middle-side div {
  /* height: 700px; */
}

.right-side {
  width: 20%;
}

.left-side ul li {
  padding: 7px 20px 7px 25px;
}

.left-side ul li a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  transition: 0.3s all;
}

.left-side ul li a:hover {
  color: rgba(0, 0, 0, 1);
}

.article-into-text {
  font-size: 30px;
  font-weight: 500;
  color: #222222;
  /* margin-bottom: 20px; */
}

.text-action {
  padding: 20px 0px;
}

.middle-side p {
  color: #2f2f2f;
  font-size: 16px;
}
.article-header-text {
  font-size: 20px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 13px;
}

.middle-side .article-sub-header-text {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  padding: 15px 0;
}

.middle-side hr {
  margin: 30px 0px;
  color: #dddddd36;
}

.list {
  list-style: disc;
  padding-left: 50px;
  margin: 20px 0;
}

.list li {
  color: #2f2f2f;
  font-size: 16px;
  margin: 10px 0px;
}

.image-wrapper {
  margin: 30px 0;
}

.main-footer {
  background-color: #092a60;
  padding: 50px 10%;
  padding-top: 200px;
}

.footer-widget {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.footer-logo {
  width: 150px;
}

.footer-logo img {
  width: 100%;
}

.footer-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-widget ul li a {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  transition: 0.3s all;
}

.footer-widget ul li a:hover {
  color: #ec9665;
}

.footer-widget .footer-widget-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.footer-social-links a {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.mobile-menu-icon {
  display: none;
}

.mobile-menu {
  padding: 15px;
  width: 100%;
  transition: 0.3s all;
  transform: translateX(-100%);
  background: #fff;
  position: absolute;
  height: 100vh;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.active-menu {
  transform: translateX(0);
}

.mobile-navbar {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 25px;
  padding: 10px;
  margin-top: 20px;
  align-items: center;
}

.mobile-navbar li a {
  color: #222222;
}

.mobile-dropdown ul {
  /* padding-left: 20px; */
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.testimonial-box {
  height: 300px;
}


/* products */

.navbar .dropdown:hover .products-wrapper {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown:hover .help-wrapper {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.dropdown .products-wrapper {
  /* display: none; */
  /* padding: 20px 0px; */
  position: absolute;
  top: 100%;
  left: -300px; /* start at center of button */

  list-style: none;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 750px;
  transform: translateY(30px);
  opacity: 0;
  padding: 35px;
  visibility: hidden;
  transition: 0.2s all;
  z-index: 999;
  border-radius: 10px;
}

.dropdown .help-wrapper{
  position: absolute;
  top: 100%;
  left: 0px; /* start at center of button */

  list-style: none;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /* width: 750px; */
  transform: translateY(30px);
  opacity: 0;
  /* padding: 10px; */
  visibility: hidden;
  transition: 0.2s all;
  z-index: 999;
  border-radius: 4px;
  width: 200px;
}

.help-wrapper a{
  white-space: nowrap;
padding: 10px 15px;
font-size: 14px;
color: #222;

}

.help-wrapper a:hover{
  background: #f4f4f48d;
}

.products-wrapper .product-header {
  width: 100%;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #222;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-item .product-title {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  transition: 0.3s all;
  cursor: pointer;
}

.product-item .product-title:hover {
  color: #1777f7 !important;
}

.product-item .product-desc {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.product-item-wrapper {
  display: flex;
  align-items: center;
  gap: 3px;
}
.product-icon {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #717171;
}
.products-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0px 5%;
  }
  .hero-section {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 15px;
  }

  .header-text {
    font-size: 24px !important;
    margin-top: 15px;
  }

  .hero-text-wrapper .sub-header-text {
    width: 100%;
    margin-bottom: 10px;
  }

  .artical-container {
    margin-top: 60px;
  }
  .artical-wrapper {
    grid-template-columns: 1fr;
  }
  .artical-img-card {
    height: 170px;
  }
  .artical-box .sub-header-text {
    margin-bottom: 15px;
  }
  .artical-text-wrapper .header-text {
    font-size: 20px !important;
  }

  .testimonial-wrapper {
    padding: 40px 5%;
  }
  .testimonial-text {
    font-size: 15px;
  }
  .footer-widget {
    flex-direction: column;
  }
  .main-footer {
    padding: 50px 5% 40px;
  }
  .hero-img-card {
    height: 230px;
  }
  .hero-text-wrapper {
    padding-top: 15px;
  }

  .navbar {
    display: none !important;
  }

  .login-btn {
    display: none !important;
  }

  .navbar-wrapper {
    padding: 0px 5%;
  }

  .free-trail-btn {
    padding: 10px 20px !important;
    font-size: 13px !important;
    border-radius: 5px !important;
  }

  .mobile-menu-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid #f4f4f4;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  }

  .mobile-close-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid #f4f4f4;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  }

  .icon-wrapper {
    display: none !important;
  }
}
