@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
header {
  background-color: #fff;
  color: #333;
  position: sticky;
  top: 0;
}
header > .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Fixes alignment */
  width: 100%; /* Ensures full width */
  padding: 10px 30px;
  /* Ensures the image is fully visible without stretching */
}
header > .header-content > a .logo {
  height: 55px; /* You can adjust this height to fit your logo */
  width: 150px; /* Ensure the width adjusts to the logo's aspect ratio */
  background-image: url("../img/logo-3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
header > .header-content > .navbar-section {
  display: none;
}
header > .header-content > .sidebar-section {
  position: fixed;
  top: 70px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7450980392);
  width: 100%;
  padding: 10px 0 25px;
  transform: translateX(-100%);
  transition: all 0.5s ease 0s;
}
header > .header-content > .sidebar-section > .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
header > .header-content > .sidebar-section > .list > .item > .link {
  color: #333;
  font-weight: 500;
  transition: all 0.5s ease 0s;
}
header > .header-content > .sidebar-section > .list > .item > .link:hover, header > .header-content > .sidebar-section > .list > .item > .link:focus {
  color: #3d4991;
}
header > .header-content .nav--open {
  transform: translateX(0) !important;
}
header > .header-content > .hamburger {
  display: block;
  cursor: pointer;
}
header > .header-content > .hamburger > .bar {
  width: 27px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.631372549);
  border-radius: 1px;
  margin: 6px 0;
}

@media (min-width: 768px) {
  .header-content > .navbar-section {
    display: flex !important;
    align-items: center;
    flex-direction: row;
  }
  .header-content > .navbar-section > .list {
    display: flex;
    align-items: center;
    justify-content: flex-end !important;
    gap: 20px;
  }
  .header-content > .navbar-section > .list > .item {
    margin: 10px;
  }
  .header-content > .navbar-section > .list > .item > .link {
    color: #333;
    font-weight: 500;
    transition: all 0.5s ease 0s;
  }
  .header-content > .navbar-section > .list > .item > .link:hover, .header-content > .navbar-section > .list > .item > .link:focus {
    color: #3d4991;
  }
  .header-content > .hamburger {
    display: none !important;
  }
  .header-content > .hamburger > .bar {
    display: none !important;
  }
}
.container {
  display: flex;
  padding: 20px;
  max-width: 479px;
  margin: auto;
}

@media (min-width: 480px) {
  .container {
    max-width: 767px;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1400px;
    margin: auto;
  }
}
.hero-section {
  height: calc(100vh - 70px);
  background-image: url("../img/hero-1-hq.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-image: fill 1 linear-gradient(rgba(0, 0, 0, 0.627), rgba(0, 0, 0, 0.4823529412));
}
.hero-section > .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-section > .container > .heading {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin: 10px;
}
.hero-section > .container > .subheading {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  margin: 10px;
}
.hero-section > .container > .btn {
  text-align: center;
  padding: 13px;
  color: #fff;
  background-color: rgba(61, 74, 145, 0.8274509804);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
}
.hero-section > .container > .btn:hover {
  background-color: rgba(255, 255, 255, 0.6274509804);
  color: #3d4991;
  font-weight: 500;
}

@media (min-width: 480px) {
  .hero-section > .container > .heading {
    font-size: 2.7rem !important;
    color: #fff;
    margin: 10px;
  }
  .hero-section > .container > .subheading {
    font-size: 1.3rem !important;
    color: #fff;
    margin: 10px;
  }
  .hero-section > .container > .btn {
    color: #fff;
    background-color: #3d4991;
    margin: 10px 0;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .hero-section > .container > .heading {
    font-size: 3.5rem !important;
    color: #fff;
    margin: 10px;
  }
  .hero-section > .container > .subheading {
    font-size: 1.3rem !important;
    color: #fff;
    margin: 10px;
  }
  .hero-section > .container > .btn {
    color: rgba(255, 255, 255, 0.6274509804);
    background-color: rgba(61, 74, 145, 0.8274509804);
    margin: 10px 0;
    font-size: 1.2rem;
  }
}
.introduction-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  text-align: center;
  font-size: 1.89rem;
  margin: 10px 0px;
  padding-top: 10px;
  letter-spacing: 0.05em;
  line-height: 1.3em;
}

.paragraph {
  font-size: 1rem;
  line-height: 1.5em;
  padding: 5px 0;
  margin: 5px;
}

@media (min-width: 480px) {
  .title {
    font-size: 2rem;
  }
  .paragraph {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  .paragraph {
    font-size: 1.4rem;
  }
}
.service-card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.service-card-section > .card > .title {
  font-size: 1.5rem;
  text-align: center;
}
.service-card-section > .card > .image {
  align-items: center;
  justify-content: center;
  flex: 1 1 100%;
}
.service-card-section > .card > .image > img {
  width: 100%;
  height: auto; /* Let the image scale naturally */
  object-fit: cover;
  border-radius: 10px; /* Prevent distortion */
}

.btn-services {
  color: #fff;
  background-color: #3d4991;
  border: 2px solid rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
  font-weight: 500;
  max-width: 200px;
  margin-bottom: 20px;
}
.btn-services:hover {
  background-color: rgba(255, 255, 255, 0.6274509804);
  border: 2px solid #3d4991;
  color: #3d4991;
}

.heading {
  text-align: center;
  font-size: 1.89rem;
}

@media (min-width: 480px) {
  .title {
    font-size: 1.7rem;
  }
  .service-card-section {
    display: flex;
  }
  .service-card-section > .heading {
    text-align: center;
    font-size: 2rem;
  }
  .service-card-section > .card > .title {
    font-size: 1.5rem;
    padding: px;
  }
  .service-card-section > .card > .image {
    padding: 30px 0; /* For larger screens */
  }
  .service-card-section > .card > .image > img {
    width: 450px;
    height: 300px;
    /* Let the image scale naturally */
    /* Prevent distortion */
  }
  .btn-services {
    max-width: 200px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .title {
    font-size: 2rem;
  }
  .service-card-section {
    display: flex;
  }
  .service-card-section > .heading {
    text-align: center;
    font-size: 2rem;
  }
  .service-card-section > .card {
    flex: 1 1 calc(50% - 15px); /* 2 cards per row, minus gap */
    width: calc(50% - 15px); /* Set each card's width to 50% */
    align-items: center;
    justify-content: center;
    height: 75%;
  }
  .service-card-section > .card > .title {
    font-size: 1.5rem;
  }
  .service-card-section > .card > .image {
    height: 100%;
    width: 100%;
    padding: 30px 0;
  }
  .service-card-section > .card > .image > img {
    width: 100%;
    height: 240px; /* Let the image scale naturally */
    object-fit: cover; /* Prevent distortion */
  }
  .btn-services {
    max-width: 350px;
  }
}
@media (min-width: 1024px) {
  .btn-services {
    max-width: 400px;
  }
  .title {
    font-size: 2rem;
  }
  .service-card-section {
    display: flex;
  }
  .service-card-section > .heading {
    text-align: center;
    font-size: 2rem;
  }
  .service-card-section > .card {
    flex: 1 1 calc(50% - 15px); /* 2 cards per row, minus gap */
    width: calc(50% - 15px); /* Set each card's width to 50% */
    align-items: center;
    justify-content: center;
  }
  .service-card-section > .card > .title {
    font-size: 1.5rem;
    padding: px;
  }
  .service-card-section > .card > .image {
    height: 100%;
    width: 100%;
    padding: 30px 0;
  }
  .service-card-section > .card > .image > img {
    width: 100%;
    height: 350px; /* Let the image scale naturally */
    object-fit: cover;
    /* Prevent distortion */
  }
}
.line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1px;
}
.line hr {
  width: 75%;
  border: 0.5px solid rgba(61, 74, 145, 0.5019607843);
  border-radius: 5px;
}

.cta-section {
  margin: 20px 0 0 0;
  background-color: #3d4991;
}
.cta-section .container {
  flex-direction: column;
}
.cta-section .container > .title {
  font-size: 1.89rem;
  color: #fff;
  margin: 10px;
}
.cta-section .container > .info {
  justify-content: center;
  text-align: center;
  display: flex;
  width: 300;
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}
.cta-section .container > .btn-cta {
  color: #3d4991;
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
  font-weight: 500;
  width: 100%;
}
.cta-section .container > .btn-cta:hover {
  background-color: #3d4991;
  border: 2px solid #fff;
  color: #fff;
}

@media (min-width: 480px) {
  .cta-section > .container {
    flex-direction: column;
  }
  .cta-section > .container > .title {
    font-size: 2rem;
  }
  .cta-section > .container > .info {
    font-size: 1.1rem;
  }
  .cta-section > .container > .btn-cta {
    max-width: 200px;
  }
  .cta-section > .container > .btn-cta:hover {
    font-weight: 500;
  }
}
@media (min-width: 768px) {
  .cta-section > .container {
    flex-direction: column;
  }
  .cta-section > .container > .title {
    font-size: 2rem;
  }
  .cta-section > .container > .info {
    font-size: 1.1rem;
  }
  .cta-section > .container > .btn-cta {
    max-width: 350px;
  }
  .cta-section > .container > .btn-cta:hover {
    font-weight: 500;
  }
}
@media (min-width: 1024px) {
  .cta-section > .container {
    flex-direction: column;
  }
  .cta-section > .container > .title {
    font-size: 2.5rem;
  }
  .cta-section > .container > .info {
    font-size: 1.4rem;
  }
  .cta-section > .container > .btn-cta {
    max-width: 400px;
  }
}
body {
  scrollbar-color: rebeccapurple;
}

.footer-section {
  padding: 20px;
  background: #fff;
}
.footer-section > .social {
  text-align: center;
  padding-bottom: 20px;
}
.footer-section > .social > a {
  font-size: 24px;
  color: #3d4991;
  margin: 0 10px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  transition: all 0.5s ease 0s;
}
.footer-section > .social > a:hover {
  color: #272f5d;
}
.footer-section .list {
  font-size: 11px;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-section .list > li > a {
  color: #333;
  font-weight: 600;
  transition: all 0.5s ease 0s;
}
.footer-section .list > li > a:hover {
  color: #3d4991;
}

.copyright {
  background-color: #3d4991;
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
}

@media (min-width: 480px) {
  .footer-section > .social > a {
    font-size: 28px;
  }
  .footer-section .list {
    font-size: 18px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-section .list > li > a {
    color: #333;
    font-weight: 500;
    transition: all 0.5s ease 0s;
  }
  .footer-section .list > li > a:hover {
    color: #3d4991;
  }
  .copyright {
    line-height: 32px;
    font-weight: 400;
    font-size: calc(1rem + 4px);
    color: #fff;
  }
}
@media (min-width: 1024px) {
  .footer-section > .social > a {
    font-size: 32px;
  }
  .footer-section .list {
    font-size: 18px;
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-section .list > li > a {
    color: #333;
    font-weight: 500;
    transition: all 0.5s ease 0s;
  }
  .footer-section .list > li > a:hover {
    color: #3d4991;
  }
  .copyright {
    line-height: 32px;
    font-weight: 400;
    font-size: calc(1rem + 4px);
    color: #fff;
  }
}
/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background-color: #4d5cb7;
  border-radius: 1px;
}
::-webkit-scrollbar-thumb:active {
  background-color: #272f5d;
}

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

.main-heading {
  text-align: center;
  font-size: 32px;
}

.subheading {
  font-size: 1.5rem;
  text-align: center;
  color: #3d4991;
  margin-top: 20px;
}

.two-section {
  display: flex;
  align-items: center;
  justify-content: stretch;
  flex-direction: column;
  gap: 25px;
}
.two-section > .image {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  height: auto;
}
.two-section > .image > img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.two-section > .text > p {
  font-size: 1rem;
}

.two-section-reverse {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
.two-section-reverse > .image {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  height: auto;
}
.two-section-reverse > .image > img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.two-section-reverse > .text {
  padding: 10px;
  margin: 20px 0;
}
.two-section-reverse > .text > p {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .main-heading {
    font-size: 40px;
  }
  .subheading {
    font-size: 1.9rem;
  }
  .two-section > .text > p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .two-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  .two-section > .text {
    padding: 10px;
    margin: 20px 0;
  }
  .two-section > .text > p {
    font-size: 1.15rem;
  }
  .two-section-reverse {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
  }
  .two-section-reverse > .text {
    padding: 10px;
    margin: 20px 0;
  }
  .two-section-reverse > .text > p {
    font-size: 1.15rem;
  }
}
.three-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.three-section > .card {
  border: 3px solid #3d4991;
  border-radius: 10px;
  background: #3d4991;
  transition: all 0.5s ease 0s;
}
.three-section > .card > .icon {
  margin-top: 25px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.three-section > .card > .title {
  color: #fff;
  text-align: center;
}
.three-section > .card > .text {
  color: #fff;
  text-align: center;
  padding: 20px;
}
.three-section > .card:hover {
  background-color: #fff;
}
.three-section > .card:hover > .icon {
  color: #3d4991;
}
.three-section > .card:hover > .title {
  color: #3d4991;
}
.three-section > .card:hover > .text {
  color: #3d4991;
}

@media (min-width: 768px) {
  .three-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly !important;
    gap: 20px;
  }
  .three-section > .card {
    height: 300px;
    border: 3px solid #3d4991;
    border-radius: 10px;
    background: #3d4991;
    padding: 20px;
  }
  .three-section > .card > .icon {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
  }
  .three-section > .card > .title {
    color: #fff;
    text-align: center;
    font-size: 24px;
  }
  .three-section > .card > .text {
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
}
.main-heading {
  width: 100%;
  background-color: #3d4991;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.contact {
  background-color: #3d4991;
}
.contact > .contact-section {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.contact > .contact-section > .form > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact > .contact-section > .form > div > label {
  font-size: 1rem;
  margin: 10px 0;
}
.contact > .contact-section > .form > div > input {
  align-items: center;
  margin-bottom: 10px;
  width: 85vw;
  height: 35px;
  border-radius: 3px;
  border: 3px solid #eee;
  letter-spacing: 0.1em;
}
.contact > .contact-section > .form > div > input:focus {
  outline: none;
}
.contact > .contact-section > .form > div > textarea {
  height: 120px;
  width: 85vw;
  font-family: "montserrat", Arial, Helvetica, sans-serif;
  letter-spacing: 0.1em;
  font-weight: 450;
}
.contact > .contact-section > .form > .submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30vw;
  margin: 0 auto;
  margin-top: 25px;
  background-color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 5px;
  color: #3d4991;
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
}
.contact > .contact-section > .info > .detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact > .contact-section > .info > .detail > .icon {
  margin-top: 20px;
  margin-bottom: 5px;
}
.contact > .contact-section > .info > .detail > .title {
  text-align: center;
  font-size: 0.7rem;
}

@media (min-width: 425px) {
  .contact > .contact-section > .form > div > label {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  .contact > .contact-section > .info > .detail > .icon {
    font-size: 24px;
  }
  .contact > .contact-section > .info > .detail > .title {
    text-align: center;
    font-size: 0.95rem;
  }
}
@media (min-width: 768px) {
  .contact > .contact-section > .form > div > input {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  .contact > .contact-section > .form > div > input:focus {
    outline: none;
  }
  .contact > .contact-section > .form > div > textarea {
    font-size: 18px;
  }
  .contact > .contact-section > .form > div > textarea:focus {
    outline: none;
  }
  .contact > .contact-section > .form > .info > .detail > .icon {
    font-size: 32px;
  }
  .contact > .contact-section > .form > .info > .detail > .title {
    text-align: center;
    font-size: 1.2rem;
  }
}
.thanks-section {
  width: 100vw;
  height: 100vh;
  background-color: #3d4991;
}
.thanks-section > .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thanks-section > .content > h1 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
}
.thanks-section > .content > p {
  margin-top: 30px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
}
.thanks-section > .content > a {
  text-align: center;
  padding: 13px;
  color: #3d4991;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
  margin: 30px;
}
.thanks-section > .content > a:hover {
  background-color: rgba(255, 255, 255, 0.6274509804);
  color: #3d4991;
  font-weight: 500;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "montserrat", Arial, Helvetica, sans-serif;
}

/*# sourceMappingURL=style.css.map */
