﻿html,
body {
  padding: 0;
  margin: 0;
}

.blue-light {
  color: #03aaf8;
}

.blue-light-bg {
  background-color: #03aaf8;
}

.blue-dark {
  color: #213983;
}

.blue-dark-bg {
  background-color: #213983;
}

/* HEADING */

.heading-container {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.heading-content-centered {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.heading-text {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.heading-subheading-text {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  max-width: 800px;
  line-height: 1.6;
}

canvas#network {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
/*  background: radial-gradient(circle, #213983 0%, #3a5b94 50%, #2a2a2a 100%); cooler one */ 
  background: radial-gradient(circle, #213983 0%, #3a5b94 50%, #8b9bb7 100%);
}

.heading-text,
.heading-subheading-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.heading-subheading-text {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .heading-text {
    font-size: 2rem;
  }

  .heading-sbuheading-text {
    font-size: 0.8rem;
    padding-top: 6rem;
    width: 100%;
  }
}

/* Feature Icons */
.features-section {
  margin: 0;
  padding: 0;
}

.feature-column {
  padding: 0;
}

.feature-card {
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

  /*.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }*/

.feature-white {
  background-color: #f2f8ff;
}

.feature-light-blue {
  background-color: #03aaf8;
}

.features-icon {
  width: 70px;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 90%;
}

.features-section .container-fluid {
  padding: 0;
}

.features-section .row {
  margin: 0;
}

.feature-column {
  padding: 0;
}

@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-light-blue,
  .feature-dark-blue {
    width: 100%;
    /* margin-bottom: 2rem; */
  }

  .features-container p {
    width: 100%;
    text-align: center;
  }

  .features-icon {
    width: 70px;
  }
}

/* SEE HOW IT WORKS */

.see-how-it-works-wrapper {
  /*background: linear-gradient(to bottom, #213983 0%, #b6b2b3 100%);*/
  background-color: #b9dbf0;
  padding: 4rem 0;
}

.see-how-it-works-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 4rem 2rem;
}


.section-header {
  background: rgba(3, 170, 248, 0.1);
  border-radius: 12px;
}

.step-number {
  width: 70px;
  height: 70px;
  font-size: 1.7rem;
  font-weight: bold;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.step-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .see-how-it-works-container {
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
  }

  .see-how-it-works-heading {
    font-size: 2rem;
  }

  .see-how-it-works-subheading {
    font-size: 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .step-row {
    justify-content: center !important;
    text-align: center;
  }

    .step-row .col-lg-8 {
      text-align: center !important;
    }

  .d-flex.align-items-center {
    justify-content: center !important;
    flex-direction: column;
  }

  .step-title {
    margin-top: 1rem;
  }

  .step-desc {
    max-width: 100%;
  }

  .even-step-order{
  	order: 1;
  }

  .even-step-title-order {
  		order: 2;
  }
}

@media (max-width: 768px) {
  .steps-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .left-step-desc,
  .right-step-desc {
    width: 90%;
    text-align: center;
    font-size: 1rem;
  }

  .step-number-light-blue,
  .step-number-dark-blue {
    font-size: 2rem;
    padding: 1rem;
  }

  .step-heading {
    font-size: 1.4rem;
  }

  .left-step,
  .right-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .even-step-order {
    order: 1;
  }

  .even-step-title-order {
    order: 2;
  }
}


/* DOWNLOAD BRIEF */
.download-brief-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.95));
}

.download-brief-bg-layer {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(3, 170, 248, 0.05), rgba(33, 57, 131, 0.05)), url('../../images/homePage/images/book_and_gavel.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: brightness(0.65) blur(1.3px);
  transform: scale(1.05);
  z-index: -1;
}

.download-brief-heading-container h1 {
  color: #213983;
  font-size: 2.5rem;
  font-weight: 700;
}

.download-brief-heading-container h3 {
  color: #213983;
  font-size: 1.5rem;
  font-weight: 400;
}

.download-brief-heading-container a {
  background-color: #213983;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
}

.brief-image {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991.98px) {
  .download-brief-heading-container {
    text-align: center !important;
  }

    .download-brief-heading-container h1 {
      font-size: 2rem;
    }

    .download-brief-heading-container h3 {
      font-size: 1.25rem;
    }

    .download-brief-heading-container button {
      font-size: 1rem;
      padding: 0.75rem 2rem;
    }
}

@media (max-width: 768px) {
  .download-brief-container {
    flex-direction: column;
    text-align: center;
  }

  .brief-image {
    width: 80%;
    margin: 20px 0;
  }
}

/* CONTACT FORM */

.form-card {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

  .form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../images/homePage/images/contact_form_bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: brightness(0.5) blur(1px);
    z-index: -1;
  }


.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-us-container {
  width: 40%;
  color: #ffffff;
  text-align: left;
  z-index: 1;
}

  .contact-us-container h3 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 1rem;
  }

  .contact-us-container p {
    color: black;
    font-size: 1.2rem;
    font-weight: 400;
  }


.form-content {
  width: 50%;
  padding: 2rem;
  border-radius: 10px;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
  }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #03aaf8;
      outline: none;
    }

.submit-btn {
  background-color: #213983;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

  .submit-btn:hover {
    background-color: #03aaf8;
  }

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
  }

  .contact-us-container {
    text-align: center;
  }

  .form-content {
    width: 90%;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
    padding: 1rem;
  }
}

/* INFO */

.contact-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #b9dbf0;
  flex-wrap: wrap;
  overflow: hidden;
}


.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
}

.contact-icon {
  width: 50px;
  height: 50px;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: #213983;
}

.contact-details p {
  font-size: 1rem;
  color: #213983;
  font-weight: lighter;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    width: 80%;
    margin: 0;
    text-align: center;
    margin: auto;
  }

  .contact-details h4 {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 0.8rem;
  }
}

/* FOOTER */

.footer {
  display: flex;
  justify-content: space-between;
  padding: 3rem 5%;
  flex-wrap: wrap;
}

.footer-column {
  width: 25%;
  margin-bottom: 2rem;
}

  .footer-column h3 {
    font-size: 1.5rem;
    color: #b9dbf0;
    margin-bottom: 1rem;
  }

  .footer-column p {
    font-size: 1rem;
    color: #b9dbf0;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

    .footer-column ul li {
      margin: 0.5rem 0;
    }

  .footer-column a {
    text-decoration: none;
    color: #b9dbf0;
    font-size: 1rem;
    font-weight: lighter;
  }

    .footer-column a:hover {
      color: #03aaf8;
    }

.footer-icons {
  width: 10px;
  margin-right: 5px;
}


.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #f2f8ff;
}

.social-icon {
  margin: 0 1rem;
}

  .social-icon img {
    width: 30px;
    height: 30px;
  }

/* Footer Section */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    width: 80%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-icons {
    width: 10px;
    margin-right: 5px;
  }
}
