* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  /*
  Blue: #170b5c
  Orange: #e05a00
  */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Orbitron", sans-serif;
  line-height: 1;
  font-weight: 500;
  overflow-x: hidden;
}

/* -------------------------- GENERAL -------------------------- */
main {
  background-color: #eeeff1;
}

.container {
  max-width: 140rem;
  padding: 0 5rem;
  margin: 0 auto;
}

.container-about {
  margin-top: -5rem;
}

.sec-title {
  position: relative;
  padding-bottom: 40px;
}

.title {
  position: relative;
  color: #e05a00;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}

.sub-title {
  font-size: 3rem;
  color: #170b5c;
  font-weight: 400;
}

.text-colour {
  color: #170b5c;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

/* .grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
} */

.grid--center-v {
  align-items: center;
}

.center-text {
  text-align: center;
}

.wave {
  background-repeat: no-repeat;
  width: 100%;
}

.wave1 {
  margin-bottom: -110rem;
}

.wave2 {
  margin-bottom: -80rem;
  z-index: -99;
}

.wave3 {
  margin-bottom: 60rem;
}

.or {
  color: #e05a00;
  font-weight: 700;
}

/* -------------------------- ANIMATION ----------------------------*/

.fade-in {
  opacity: 0;
  transition: opacity 200ms ease-in;
}

.fade-in.appear {
  opacity: 1;
}

.fade-in-slow {
  opacity: 0;
  transition: opacity 1500ms ease-in;
}

.fade-in-slow.appear {
  opacity: 0.2;
}

.fade-in-light {
  opacity: 0;
  transition: opacity 600ms ease-in;
}

.fade-in-light.appear {
  opacity: 0.6;
}

@media (max-width: 480px) {
  .sec-title .title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .sub-title {
    font-size: 2rem;
    color: #170b5c;
    font-weight: 600;
  }

  .fade-in {
    opacity: 1;
  }
}

/* -------------------------- HEADER - LOGO + NAV -------------------------- */

.navbar {
  position: fixed;
  height: 9rem;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #170b5c;
  padding: 0.5rem 1rem;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding-right: 5rem;
  padding-left: 5rem;
}

.nav-logo {
  height: 5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e05a00; /* Highlight color */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #170b5c;
    width: 100%;
    text-align: center;
    height: 20rem;
    padding-top: 2rem;
  }

  .nav-links.active {
    display: flex;
  }
}

/* -------------------------- HERO -------------------------- */

.section-hero {
  padding: 0 0 4.8rem 0;
  background-image: url(../img/herobg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 100vh;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.bg-logo {
  max-width: 50%;
  max-height: 50%;
  height: auto;
}

@media (max-width: 1000px) {
  .bg-logo {
    max-width: 65%;
  }
}

@media (max-width: 480px) {
  .section-hero {
    background-image: none;
    height: auto;
    margin-top: -15rem;
  }
  .bg-logo {
    max-width: 100%;
  }
}

/* -------------------------- ABOUT US -------------------------- */

.about-section {
  position: relative;
  padding: 60px 0px;
  margin-bottom: 0rem;
}

.text {
  position: relative;
  font-family: Verdana, Arial, Tahoma, Helvetica;
  font-size: 1.75rem;
  line-height: 2em;
  margin-bottom: 40px;
}

.image-column {
  position: relative;
  margin-bottom: 50px;
}

.inner-column {
  position: relative;
  padding: 40px 40px 0px 0px;
  margin-left: 50px;
}

.image img {
  position: relative;
  width: 85%;
  height: auto;
}

.image:before {
  position: absolute;
  content: "";
  left: 5rem;
  bottom: 5rem;
  width: 75%;
  height: 90%;
  border: 3px solid #e05a00;
}

.overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.year-box {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
}

.about-section
  .image-column
  .inner-column
  .image
  .overlay-box
  .year-box
  .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: #e05a00;
  font-size: 6rem;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.imgborder {
  height: 20rem;
  width: 10rem;
  background-color: #555;
  right: -50px;
}

.fade-in-about {
  opacity: 1;
}

@media (max-width: 1200px) {
  .text {
    font-size: 1.65rem;
    line-height: 1.5em;
  }
}

@media (max-width: 1000px) {
  .grid--2-cols {
    grid-template-columns: 1fr;
  }
  .text {
    font-size: 1.55rem;
    line-height: 1.5em;
  }
  .image-column {
    display: none;
  }
  .text {
    margin-bottom: 0px;
  }
  .grid:not(:last-child) {
    margin-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding-top: 0rem;
    margin-top: -25rem;
    text-align: center;
  }

  .text {
    font-size: 1.5rem;
    line-height: 1.5em;
  }
  .grid--2-cols {
    grid-template-columns: 1fr;
    column-gap: 0rem;
    row-gap: 5rem;
    padding: 0rem 0rem 0rem 0rem;
  }
}

/* -------------------------- SERVICES -------------------------- */

.services-section {
  padding-bottom: 5rem;
}

.service-heading {
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #100b52;
}

.service-description {
  font-size: 1.55rem;
  font-family: Verdana, Arial, Tahoma, Helvetica;
  line-height: 1.8;
  padding: 0 2rem;
}

.service-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-box::before,
.service-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-text-box {
  height: 42rem;
  z-index: 1;
  border: solid 1px #e05a00;
}

.service-text-box:hover h3,
.service-text-box:hover p {
  color: #ffffff;
}
.service-text-box:hover img {
  filter: brightness(100);
}

.service-text-box:nth-child(1):hover {
  background: linear-gradient(
      45deg,
      rgba(219, 110, 37, 0.8) 0%,
      rgba(224, 90, 0, 0.8) 100%
    ),
    url("../img/service1.jpg");
  background-size: cover;
}

.service-text-box:nth-child(2):hover {
  background: linear-gradient(
      45deg,
      rgba(219, 110, 37, 0.8) 0%,
      rgba(224, 90, 0, 0.8) 100%
    ),
    url("../img/service2.jpg");
  background-size: cover;
}

.service-text-box:nth-child(3):hover {
  background: linear-gradient(
      45deg,
      rgba(219, 110, 37, 0.8) 0%,
      rgba(224, 90, 0, 0.8) 100%
    ),
    url("../img/service3.jpg");
  background-size: cover;
}

.service-text-box:nth-child(4):hover {
  background: linear-gradient(
      45deg,
      rgba(219, 110, 37, 0.8) 0%,
      rgba(224, 90, 0, 0.8) 100%
    ),
    url("../img/service4.jpg");
  background-size: cover;
}

.service-text-box:nth-child(5):hover {
  background: linear-gradient(
      45deg,
      rgba(219, 110, 37, 0.8) 0%,
      rgba(224, 90, 0, 0.8) 100%
    ),
    url("../img/service5.jpg");
  background-size: cover;
}

.service-text-box:nth-child(6):hover {
  background: linear-gradient(
      45deg,
      rgba(219, 110, 37, 0.8) 0%,
      rgba(224, 90, 0, 0.8) 100%
    ),
    url("../img/service6.jpg");
  background-size: cover;
}

.one {
  background-color: #ffffff;
}

.two {
  background-color: rgb(233, 233, 233);
}

.service-icon {
  margin-top: 4rem;
  width: 15%;
}
@media (max-width: 1000px) {
  .grid--3-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .grid--3-cols {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0rem;
    row-gap: 1rem;
    padding: 0rem 5rem 0rem 5rem;
  }
  .services-section {
    text-align: center;
  }
  .service-description {
    font-size: 1.45rem;
  }
}

/* -------------------------- Testimonial -------------------------- */

.testimonial-section {
  padding: 10rem 0 0 0;
  height: 80rem;
  justify-content: center;
  margin-bottom: 50px;
  background-image: url("../img/wave4.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-section {
  width: 100%;
  padding: 0px 8%;
}
.testimonials-section .section-header {
  max-width: 700px;
  text-align: center;
  margin: 30px auto 40px;
}
.section-header h1 {
  position: relative;
  font-size: 36px;
  color: var(--primary-clr);
}
.testimonials-container {
  position: relative;
}
.testimonials-container .testimonial-card {
  padding: 20px;
}
.testimonial-card .test-card-body {
  background-color: #ffffffc2;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.12);
  padding: 20px;
}
.test-card-body .quote {
  display: flex;
  align-items: center;
}
.test-card-body .quote i {
  font-size: 8rem;
  color: #170b5c;
  margin-right: 20px;
}
.test-card-body .quote h2 {
  color: var(--heading-clr);
}
.test-card-body p {
  margin: 10px 0px 15px;
  font-size: 1.55rem;
  line-height: 1.5;
  font-family: Verdana, Arial, Tahoma, Helvetica;
}
.test-card-body .ratings {
  margin-top: 20px;
}
.test-card-body .ratings i {
  font-size: 17px;
  color: #e05a00;
  cursor: pointer;
}
.testimonial-card .profile {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.profile .profile-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.profile .profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.profile .profile-desc {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.profile-desc span:nth-child(1) {
  font-size: 24px;
  font-weight: bold;
  color: #e05a00;
}
.profile-desc span:nth-child(2) {
  font-size: 15px;
  color: var(--text-clr);
  color: #170b5c;
}
.owl-nav {
  position: absolute;
  right: 20px;
  bottom: -10px;
}
.owl-nav button {
  border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  padding: 10px !important;
  border-radius: 50%;
  font-size: 18px !important;
  background-color: #e05a00 !important;
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover {
  background-color: #e05a00 !important;
  color: #fff;
}
.owl-dots {
  margin-top: 15px;
}
.owl-dots .owl-dot span {
  background-color: #170b5c !important;
  padding: 6px !important;
}
.owl-dot.active span {
  background-color: #e05a00 !important;
}

@media (max-width: 480px) {
  .test-card-body p {
    margin: 10px 0px 15px;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #202020;
  }
  .testimonial-section {
    padding: 8rem 0 0 0;
    height: 85rem;
    justify-content: center;
    background-image: none;
    text-align: center;
  }
}
/* -------------------------- Contact -------------------------- */

.contact-container {
  background-color: white;
  padding: 2rem;
  margin: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: center;
  height: 40rem;
}

.contact-form {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
}

.contact-form label {
  font-size: 1.55rem;
  color: #170b5c;
}

input,
textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.55rem;
  color: #333;
  box-sizing: border-box;
  resize: none;
  margin-bottom: 10px;
  margin-top: 5px;
}

input:focus,
textarea:focus {
  border-color: #e05a00;
  outline: none;
}

button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background-color: #e05a00;
  color: white;
  font-size: 1.55rem;
  cursor: pointer;
  transition: background-color 0.3s;
  width: auto;
  align-self: flex-start;
}

button:hover {
  background-color: #170b5c;
  color: #eeeff1;
}

.contact-section {
  padding: 0rem 0 20rem;
  background-color: #eeeff1;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  border: 1px solid #e05a00;
  overflow: hidden;
}

.cta-text-box,
.contact-form {
  flex: 1;
  padding: 4.8rem 6.4rem;
  box-sizing: border-box;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
}

.aligned-grid {
  display: grid;
  grid-template-columns: max-content 1fr;
  font-family: Arial, sans-serif;
}

.align {
  font-size: 1.65rem;
  line-height: 1.8;
  color: #170b5c;
  font-family: Verdana, Arial, Tahoma, Helvetica;
}

.align b {
  display: inline-block;
  width: 100%;
  position: relative;
  padding-right: 10px;
}

.align b::after {
  content: ":";
  position: absolute;
  right: 5px;
}

.colonbox-form {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-heading {
  color: #170b5c;
  font-size: 2rem;
  padding-bottom: 3rem;
  font-family: Verdana, Arial, Tahoma, Helvetica;
}

.QR {
  height: 25rem;
  padding-top: 2rem;
}
.gdpr-consent {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  color: #170b5c;
  line-height: 1.5;
  font-family: Verdana, Arial, Tahoma, Helvetica;
}

.gdpr-consent input {
  margin-right: 1.5rem;
  width: auto;
}

.gdpr-consent label {
  font-size: 1.2rem;
}

.privacy-policy-link {
  color: #e05a00;
  text-decoration: none;
  font-weight: bold;
}

.privacy-policy-link:hover {
  text-decoration: underline;
}

#form-message {
  font-size: 1.2rem;
  padding-top: 10px;
  font-family: Verdana, Arial, Tahoma, Helvetica;
}

@media (max-width: 1000px) {
  .contact-form {
    padding: 2rem;
  }
  .cta-text-box {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .cta-heading {
    font-size: 1.75rem;
  }

  .cta-text {
    font-size: 1.55rem;
  }

  .cta-text-box {
    padding: 2rem;
    padding-bottom: 0rem;
  }

  .cta {
    flex-direction: column;
    padding: 1rem;
    animation: none;
  }

  .contact-form {
    padding: 2rem;
  }
  .contact-section {
    text-align: center;
    padding-bottom: 10rem;
  }
}

/* -------------------------- Footer -------------------------- */

.footer {
  height: 12rem;
  background-color: #170b5c;
  text-align: center;
  padding: 3rem;
}

.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer nav a:hover {
  color: #e05a00;
}

.footer p {
  margin: 10px 0;
  font-size: 14px;
  color: #fff;
}

.footer .social-links {
  margin-top: 10px;
}

@media (max-width: 480px) {
  .footer nav a {
    font-size: 10px;
  }
}

/* -------------------------- Privacy -------------------------- */
.privacy-container {
  max-width: 800px;
  margin: auto;
  margin-top: 12rem;
  margin-bottom: 12rem;
  font-family: Verdana, Arial, Tahoma, Helvetica;
}

.privacy-container h1 {
  color: #e05a00;
  text-align: center;
  font-size: 4rem;
  padding-bottom: 2rem;
}

.privacy-container h2 {
  color: #e05a00;
  margin-top: 20px;
}

.privacy-container p {
  margin: 10px 0;
  font-size: 1.5rem;
}

.privacy-container ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.5rem;
}

.privacy-container li {
  margin: 5px 0;
  font-size: 1.5rem;
}

.contact-info {
  margin-top: 20px;
  font-size: 1.5rem;
}

.contact-info strong {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
}

.align-priv {
  font-size: 1.55rem;
  line-height: 1.8;
  font-family: Verdana, Arial, Tahoma, Helvetica;
  margin-top: 20px;
}

.align-priv b {
  display: inline-block;
  width: 100%;
  position: relative;
  padding-right: 10px;
}

.align-priv b::after {
  content: ":";
  position: absolute;
  right: 5px;
}

.colonbox {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5px;
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 3rem;
    margin-top: 8rem;
    margin-bottom: 2rem;
  }
}
