@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* 
=== VARIABLES ===
 */
:root {
  /* colors */
  --bg-primary: #5aaaec;
  --bg-secondry: #2c5fa6;

  /* fonts color */
  --text-dark: #263444;
}

/* 
=== RESET PROPORTY ===
 */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* 
=== REUSABLE CODE ===
 */

.mainBtn {
  display: inline-block;
  background-color: var(--bg-secondry);
  padding: 0.75rem 1.85rem;
  border: 1px solid var(--bg-secondry);
  border-radius: 0.5rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.mainBtn:hover {
  background-color: transparent;
  color: var(--text-dark);
}

.mainBtn.secondry {
  background-color: #82909e;
  border-color: #82909e;
}

.mainBtn.secondry:hover {
  background-color: transparent;
  color: var(--text-dark);
}

/* 
=== HEADER SECTION ===
 */

.headerSection .navbar .navbar-brand img {
  width: 150px;
}

.headerSection .navbar .nav-link {
  margin-left: 1rem;
  color: var(--text-dark);
}

.headerSection .navbar .nav-link:hover,
.headerSection .navbar .nav-link.active {
  color: var(--bg-primary);
}

.headerSection .navbar .nav-link.mainBtn {
  padding: 0.75rem 1.85rem !important;
  color: #fff;
}

.headerSection .navbar .nav-link.mainBtn:hover {
  color: var(--text-dark);
}

.headerSection .navbar .navAction {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.headerSection .navbar .navAction .link {
  display: inline-block;
  text-decoration: none;
  color: var(--text-dark);
}

.headerSection .navbar .navAction .link:hover {
  color: var(--bg-primary);
}

.headerSection .navbar .navbar-toggler {
  border: 0;
}

.headerSection .navbar .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}

/* hero section */

.heroSection {
  height: calc(100vh - 6rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/heroBg.png);
  background-size: cover;
  background-position: center;
}

.heroSection .heroRow {
  justify-content: center;
  align-items: center;
}

.heroSection .heroImage img {
  height: calc(100vh - 6rem);
}

.heroSection .content .title {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}

.heroSection .content .title span {
  color: var(--bg-primary);
}

.heroSection .content .text {
  color: #fff;
}

.heroSection .content .mainBtn {
  background-color: #fff;
  color: var(--bg-secondry);
  font-weight: 700;
}

/* about section */

.aboutSection {
  margin-block: 100px;
}

.aboutSection .aboutImage img {
  border-radius: 1rem;
  border: 4px solid var(--bg-primary);
}

.aboutSection .aboutRow {
  justify-content: center;
  align-items: center;
}

.aboutSection .aboutContent {
  margin-left: 2rem;
}

.aboutSection .aboutContent .title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.aboutSection .aboutContent .title span {
  color: var(--bg-secondry);
}

/* service section */

.serviceSection {
  margin-bottom: 100px;
}

.serviceSection .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  padding: 1rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.serviceSection .item .itemContent .title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}

/* solution section */

.solutionSection {
  margin-bottom: 100px;
}

.solutionSection .sectionHeading {
  text-align: center;
  margin-bottom: 5rem;
}

.solutionSection .sectionHeading .title {
  font-weight: 700;
}

.solutionSection .sectionHeading .title span {
  color: var(--bg-secondry);
}

.solutionSection .solCard {
  background-color: #103868;
  overflow: hidden;
  border-radius: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.solutionSection .solCard .cardImage img {
  width: 100%;
  height: auto;
}

.solutionSection .solCard .cardAction {
  padding: 1rem;
}

.solutionSection .solCard .cardAction .title {
  font-weight: 700;
  color: var(--bg-primary);
}

.solutionSection .solCard .cardAction .arrow {
  float: right;
  display: inline-block;
  color: #fff;
  padding: 1rem;
}

.solutionSection .solCard .cardAction .arrow i {
  font-size: 1.5rem;
  color: var(--bg-primary);
}

/* process Section */

.processSection .solCard {
  background-color: #fff;
  color: #000;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  border-radius: 0;
  padding: 1rem;
}

.processSection .solCard .cardAction {
  padding: 0;
  margin-top: 1rem;
}

.processSection .solCard .cardAction .arrow {
  padding: 0;
}

.processSection .solCard .cardAction .title {
  color: var(--bg-secondry);
  font-size: 1.15rem;
  font-weight: 800;
}

/* VIDEO SECION */

.videoSection {
  background-color: #111d31;
  padding: 5rem 0;
  color: #fff;
  margin-bottom: 100px;
}

.videoSection .owl-carousel .item {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.videoSection .owl-carousel .item .itemImage {
  flex: 1;
}

.videoSection .owl-carousel .item .itemImage img {
  height: 100%;
}

.videoSection .owl-carousel .item .itemContent {
  flex: 1;
}

.videoSection .owl-carousel .item .itemContent .subtitle {
  font-size: 1.2rem;
}

.videoSection .owl-carousel .item .itemContent .title {
  font-size: 1.85rem;
  color: var(--bg-primary);
  font-weight: 700;
}

.videoSection .owl-carousel .item .itemContent .itemAction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.videoSection .owl-carousel .item .itemContent .itemAction .arrow {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--bg-primary);
}

.videoSection .owl-carousel .item .itemContent .itemAction .logo img {
  max-width: 120px;
}

.videoSection .owl-theme .owl-dots .owl-dot span {
  background-color: transparent;
  border: 1px solid #fff;
}

.videoSection .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--bg-primary);
  border: none;
}

.videoSection .owl-theme .owl-dots {
  margin-top: 2rem !important;
}

/* download section */

.downloadSection {
  margin-bottom: 100px;
}

.downloadSection .sectionHeading {
  text-align: center;
  margin-bottom: 5rem;
}

.downloadSection .sectionHeading .title {
  font-weight: 700;
}

.downloadSection .sectionHeading .title span {
  color: var(--bg-secondry);
}

.downloadSection .downRow {
  justify-content: center;
  align-items: center;
}

.downloadSection .downContent {
  padding: 0 3rem;
}

.downloadSection .downContent .text {
  font-size: 1.5rem;
}

.downloadSection .downContent .text a {
  font-weight: 700;
  color: var(--bg-primary);
  text-decoration: none;
  font-style: italic;
}

.downloadSection .downContent .download {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

/* pricing section */
.priceSection {
  margin-bottom: 100px;
}

.priceSection .sectionHeading {
  text-align: center;
  margin-bottom: 5rem;
}

.priceSection .sectionHeading .title {
  font-weight: 700;
}

.priceSection .sectionHeading .title span {
  color: var(--bg-secondry);
}

.priceSection .itemRow {
  justify-content: center;
  align-items: center;
}

.priceSection .priceCard {
  border: 3px solid var(--bg-primary);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.priceSection .priceCard.active {
  background-color: transparent;
  background-image: linear-gradient(to top right, #020209, #280a80);
  color: #fff;
}

.priceSection .priceCard .cardHeading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--bg-secondry);
  margin-bottom: 2rem;
}

.priceSection .priceCard .cardHeading .title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg-secondry);
}

.priceSection .priceCard.active .cardHeading .title {
  color: var(--bg-primary);
}

.priceSection .priceCard .priceList {
  list-style: none;
  padding-left: 0;
}

.priceSection .priceCard .priceList .list {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.priceSection .priceCard .priceList .list::before {
  content: "✅";
  display: block;
}

.priceSection .priceCard .link {
  display: inline;
  margin-top: 2rem;
  font-weight: 800;
  color: var(--bg-secondry);
}

/* FAQ's Section */

.faqSection {
  margin-bottom: 300px;
}

.faqSection .faqCard {
  background-color: #103868;
  color: #fff;
  padding: 2rem;
}

.faqSection .faqCard .title {
  font-weight: 800;
  margin-bottom: 3rem;
}

.faqSection .faqCard .subTitle {
  color: var(--bg-primary);
  margin-bottom: 3rem;
}

/* Contact section */

.contactSection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contactSection .contactInfo {
  display: flex;
  flex-direction: column;
  /* justify-content: center;
  align-items: center; */
  gap: 3rem;
  padding: 10rem;
}

.contactSection .contactInfo .heading .title {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--bg-secondry);
}

.contactSection .contactInfo .contacts .item {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.contactSection .contactInfo .contacts .item .icon i {
  font-size: 2.5rem;
}

.contactSection .contactInfo .contacts .item .info {
  display: flex;
  flex-direction: column;
}

.contactSection .contactInfo .contacts .item .info .link {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.contactSection .contactForm {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to top right, #103868, #020209);
}

.contactSection .input-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 3rem 4rem;
}

.contactSection .contactForm .form-control {
  width: 100%;
  background-color: transparent;
  color: #fff;
  border: 2px solid var(--bg-primary);
  padding: 1rem 1.85rem;
  border-radius: 0.5rem !important;
}

.contactSection .contactForm .form-control:focus {
  outline: 0;
  box-shadow: none;
}

.contactSection .contactForm .form-control::placeholder {
  color: #fff;
}

.contactSection .contactForm .mainBtn {
  border-radius: 0.5rem !important;
}

/* footer Section */

.footerSection {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to top right, #103868, #020209);
  padding: 2rem 0;
}

.footerSection .logo img {
  max-width: 200px;
}
