html,
body {
  margin: 0;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  scroll-behavior: smooth;
}


body {
  overflow-y: scroll;
}

html {
  scrollbar-width: none;
  /* For Firefox */
}

body::-webkit-scrollbar {
  display: none;
  /* For Chrome, Safari, and Edge */
}

.header .navbar {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 10vh;
  position: fixed;
  width: 100%;
  background-color: #c4c3c3cf;
  transition: background-color 0.3s ease;
  z-index: 9999;
}

.header .navbar.scrolled {
  z-index: 1000;
  /* Ensure it stays on top even when scrolled */
}


.navbar .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2px;
  padding: 0;
  height: 80px;
  /* Smaller height */
  width: 80px;
}

.navbar .logo img {
  width: 100%;
  /* Fit image inside */
  height: auto;
  display: block;
}

.header .navbar .nav-links {
  display: flex;
  transition: 0.3s ease all;
  font-weight: 600;

}

.navbar .nav-links li {
  list-style-type: none;

}

.navbar .nav-links li a {
  text-decoration: none;
  color: #1d1c1c;
  font-size: 1.05rem;
  margin: 0 1.2rem;
  position: relative;
  transition: color 0.3s ease;
  /* border: #001925 1px; */
}

.navbar .nav-links li a::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #1d1c1c;
  display: block;
  transition: 0.3s ease all;
}


.navbar .nav-links li a:hover::after {
  width: 100%;
}

.navbar .nav-links.nav-active {
  transform: translateX(0%);
}

.hamburger-menu {
  cursor: pointer;
  display: none;
}

.hamburger-menu div {
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: 6px;
  border-radius: 10px;
  transition: 0.3s ease all;
}

.navbar.sticky {
  background: rgb(1, 37, 116);
  transition: 0.3s ease all;
}

.navbar.sticky .logo {
  padding-left: 0.8rem;
  transition: 0.3s ease all;
}

.navbar.sticky .nav-links {
  padding-right: 0.8rem;
  font-weight: 400;
  font-size: large;
}

.navbar.sticky .hamburger-menu {
  padding-right: 1rem;
}

/* HEADER */
.main-section .header {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  height: 40vw;
  min-height: 400px;
  max-height: 600px;
  min-width: 300px;
  color: #eee;
  border-radius: 0 0 20px 20px;
}

.header h1 {
  font-weight: 600;
  font-size: xxx-large;

}

.main-section .header:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 40%, rgba(27, 32, 48, 1) 100%);
}

.main-section .header:before {
  content: "";
  width: 100%;
  height: 150%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  scale: (1.0, 1.0);
  transform: translateZ(0);
  background: #1B2030 url('../images/hero.jpg') no-repeat;
  background-size: cover;
  background-position: bottom center;
  /* Set the background to be positioned at the bottom */
  background-attachment: fixed;
  animation: grow 360s linear 10ms infinite;
  transition: all 0.4s ease-in-out;
  z-index: -8;
}


.main-section .info {
  flex: 0 0 auto;
  width: 50%;
}

.main-section .info {
  width: 100%;
  padding: 15% 10% 0 10%;
  text-align: center;
}

.main-section .meta {
  font-style: italic;
}

@keyframes grow {
  0% {
    transform: scale(1) translateY(0px);
  }

  50% {
    transform: scale(1.2) translateY(-400px);
  }
}

.main-section .content {
  padding: 5% 10%;
  text-align: justify;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 20px;
  border-radius: 10px;
  font-family: inherit;
}

.main-section .btn {
  color: #333;
  border: 2px solid;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  padding: 5px 10px;
  font-weight: 600;
}


.twtr {
  margin-top: 35px;
}

.btn.twtr:after {
  padding-left: 5px;
}

/* Slider */
.box-area {
  margin-left: 60px;
  width: 90%;
  height: 40vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.box-title {
  padding-bottom: 20px;
  text-align: center;
}

.box-area .box-title h1 {
  font-family: inherit;
  font-weight: 400;
  color: #000;
  font-size: xxx-large;
}

.box-part {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.box {
  width: 70px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  transition: all linear 0.6s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
}

.box:last-child {
  margin-right: 0;
}

.box::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box h2 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: inherit;
  font-size: 25px;
  color: #f6f6f6;
  font-weight: 600;
  opacity: 0;
  transition: all linear 0.3s;
  padding-bottom: 2px;

}

.box p {
  position: absolute;
  bottom: 20px;
  left: 40px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  color: #f6f6f6;
  opacity: 0;
  transition: all linear 0.3s;
  padding-bottom: 2px;
}

.box.active h2,
.box.active p {
  opacity: 1;
}

.active {
  width: 500px;
  transition: all linear 0.6s;
}


/* ABOUT */

.about-me {
  background: inherit;
  box-sizing: border-box;
  padding: 0px 0;
  font-family: inherit;
  border-radius: 10px;
  margin-bottom: 10px;
}

.about-me-title h1 {
  font-family: inherit;
  font-weight: 400;
  color: #000;
  font-size: xxx-large;
}

img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}


.about-me .about-me-container {
  width: 100%;
  position: relative;
  margin: 0px auto 0px auto;
  padding: 0px 20px;
}

.about-me .about-me-title {
  font-size: 50px;
  color: #0f0f0f;
  font-weight: 400;
  text-align: left;
  margin-bottom: 30px;
}


.about-me-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: nowrap;
}


.about-me-image {
  position: relative;
  margin-bottom: 50px;
}

.about-me-image .about-inner-column {
  position: relative;
  padding: 40px 40px 0px 0px;
  margin-left: 50px;
}

.about-me-image .about-inner-column:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 60px;
  z-index: -1;
  border: 2px solid #001925;
}

.about-me-image .about-inner-column .about-image {
  position: relative;
}

.about-me-image .about-inner-column .about-image img {
  position: relative;
  width: 100%;
  display: block;
}

.about-me-content {
  max-width: 600px;
  line-height: 1.8;
  font-size: 18px;
}

.about-me-flex-container .about-me-content .text {
  color: #001925;
  font-weight: 100;
  font-size: 18px;
  text-align: justify;
}


.button-container {
  position: relative;
  /* To ensure child elements with absolute positioning are positioned correctly */
  text-align: center;
  /* Center the outside button */
  margin-top: 15px;
  display: flex;
  /* Use flexbox for layout */
  justify-content: center;
  /* Center both elements horizontally */
  align-items: center;
  /* Center both elements vertically */
  gap: 20px;
  /* Add spacing between the buttons */
}

.outside-button {
  display: inline-block;
  padding: 12px 45px;
  background-color: #001925;
  /* Matches "orange" class */
  color: #c7dcfd;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.outside-button:hover {
  background-color: #c7dcfd;
  color: #001925;
  text-decoration: none;
  transform: scale(1.1);
  transition: transform 0.3s ease, background-color 0.3s ease;

}


/* CARDS */
.cards {
  position: relative;
  background-color: white;
  /* Ensure background allows visibility */
  margin-top: 0px;
  padding-bottom: 20px;
  /* Optional: Adds space around the content */
  border-radius: 10px;
  /* Optional: Rounded corners */
}


.cards h1 {
  font-family: "Montserrat", sans-serif;
  color: black;
  text-align: center;
  font-weight: 400;
  font-size: xxx-large;
  margin: 5px 0 20px 0;
}

.card-title .highlight-text {
  font-size: 40px;
  color: #0f0f0f;
  font-weight: 400;
  text-align: center;
  margin-left: 30px;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 80rem;
}

.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.col {
  width: calc(25% - 2rem);
  margin: 1rem;
  cursor: pointer;
}

.container {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

/* Badge Styling */
.brand-item .badge {
  background-color: orange;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  position: absolute;
  top: 1px;
  right: 10px;
}

.badge {
  display: inline-block;
  font: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.front,
.back {
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-position: center;
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.back {
  background: #cedce7;
  background: -webkit-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
  background: -o-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
  background: linear-gradient(45deg, #cedce7 0%, #596a72 100%);
}

.front:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  opacity: .6;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.container:hover .front,
.container:hover .back {
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.container .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container:hover .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container:hover .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.front .inner p {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.front .inner p:after {
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.front .inner span {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat';
  font-weight: 300;
}


.contact-btn {
  margin-top: 4px;
  padding: 10px 20px;
  /* Add padding for size */
  background-color: #f0f4f800;
  /* Button background color */
  color: white;
  /* Button text color */
  border: 1 px;
  /* Remove default border */
  border-radius: 5px;
  /* Rounded corners */
  font-size: 16px;
  /* Adjust font size */
  cursor: pointer;
  /* Pointer cursor on hover */
  transition: background-color 0.3s ease;
  /* Smooth transition on hover */
}

.contact-btn:hover {
  background-color: #6b6b6b;
  /* Darker background on hover */
}

/* SLIDER */

/* Testimonials */
/* Primary Colors */
:root {
  --moderate-violet: hsl(263, 55%, 52%);
  --very-dark-grayish-blue: hsl(217, 19%, 35%);
  --very-dark-blackish-blue: hsl(219, 29%, 14%);
  --white: hsl(0, 0%, 100%);

  /* Neutral Colors */
  --light-gray: hsl(0, 0%, 81%);
  --light-grayish-blue: hsl(210, 46%, 95%);

  /* Breakpoints */
  --md: 768px;
}

* {
  box-sizing: border-box;
}


.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: max(1.5rem, 2%);
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-heading {
  padding: auto;
  align-content: flex-start;
}

.testimonial-heading h1 {
  font-family: inherit;
  font-weight: 500;
  color: #0f0f0f;
  align-self: center;
  font-size: xxx-large;
}

.testimonial-heading h4 {
  font: inherit;
  font-weight: 200;
  align-content: center;
}

.test-card {
  background-color: #ffffff96;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 45%);
  padding: 1.5rem;
  flex: 1 1 calc(25% - 1rem);
  min-width: 300px;
  color: var(--very-dark-grayish-blue);
}

.test-card.card-1 {
  background-color: var(--moderate-violet);
  color: var(--white);
}

.test-card.card-2 {
  background-color: var(--very-dark-grayish-blue);
  color: var(--white);
}

.test-card.card-4 {
  background-color: var(--very-dark-blackish-blue);
  color: var(--white);
}

.client-heading {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.client-heading .test-text h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  font-family: inherit;
}

.client-heading .test-text h2 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 200;
  opacity: 0.7;
}

.test-main h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.desc p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* Contact */
.contact {
  font-family: inherit;
  z-index: 0;
  position: relative;
  padding-top: 13vh;
}

.contact-container {
  position: relative;
  width: 100%;
  min-height: 78vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-container {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #97a9c5;
  position: relative;
}

.contact-circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.contact-circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.contact-circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #97a9c5;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contact-title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.contact-input-container {
  position: relative;
  margin: 1rem 0;
}

.contact-input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.contact-input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.contact-input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contact-input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact-btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #97a9c5;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: transparent;
  color: #fff;
}

.contact-input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.contact-input-container span:before,
.contact-input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #97a9c5;
  top: 50%;
  transform: translateY(-50%);
}

.contact-input-container span:before {
  left: 50%;
}

.contact-input-container span:after {
  right: 50%;
}

.contact-input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.contact-input-container.focus span:before,
.contact-input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .contact-title {
  color: #97a9c5;
}

.contact-text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.contact-information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.contact-information i {
  color: #97a9c5;
}

.contact-icon {
  width: 28px;
  margin-right: 0.7rem;
}

.contact-social-media {
  padding: 2rem 0 0 0;
}

.contact-social-media a {
  color: #333;
  text-decoration: none;
}

.contact-social-media a:hover {
  text-decoration: underline;
}

.contact-social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.contact-social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #97a9c5, #001925);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.contact-social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #97a9c5;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.contact-big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #97a9c5, #001925);
  bottom: 30%;
  right: 30%;
  transform: translate(328px, -36px);
}

.contact-big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}


/* FOOTER */

.footer {
  background: radial-gradient(circle, #0d1117, #161b22);
  padding: 20px 60px 20px 50px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-top: 10px;
}


.footer-left,
.footer-center,
.footer-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-left .logo {
  max-width: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.footer-left .logo:hover {
  transform: scale(1);
}

.footer h4 {
  font-size: 20px;
}

.footer h4 {
  color: #c7dcfd;
  font-size: 16px;
  margin-bottom: 5px;
}

.footer .footer-links a {
  color: #c7dcfd;
  text-decoration: none;
  margin-right: 5px;
  transition: color 0.3s;
}

.footer .footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-center .single-cta {
  display: flex;
  align-items: center;
  max-height: 30%;
}

.cta-text {
  margin: 1px 2px 1px 2px;
}

.footer p {
  margin: 2px 2px 2px 2px;
}

.footer-center i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: #2c3e50;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background 0.3s;
}

.footer-center i:hover {
  background: #c7dcfd;
}

.footer-right {
  margin: 0 2px 2px 2px;
}

.footer-right .opening-hours-list {
  flex-wrap: nowrap;
}


/* MEDIA QUERIES */

/* Header */
/* @media (max-width: 768px){
  h1{
    font-size: smaller;
  }
} */

/* Navbar */
@media (max-width: 725px) {
  .navbar .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 50%;
    background-color: rgba(246, 246, 246, 0.9);
    /* Semi-transparent light background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Consistent and subtle shadow */
    margin: 0;
    padding: 0;
    display: flex;
    /* Ensures flexbox is active */
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center align items horizontally */
    justify-content: space-evenly;
    /* Evenly distribute items vertically */
    transform: translateX(-100%);
    /* Hide menu offscreen initially */
    transition: transform 0.3s ease-in-out;
    /* Smooth slide-in/out animation */
    z-index: 10;
    /* Ensure it's above other elements */
    font-weight: 600;
    /* Medium-bold text */
    font-size: 1.125rem;
    /* Larger font size (18px if root font size is 16px) */
  }


  .navbar .logo {
    scale: 90%;

  }

  .hamburger-menu {
    display: block;
  }

  /* Hamburger Menu Animation */
  .bar-change .bar1 {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .bar-change .bar2 {
    transition: opacity 0.3s ease;
  }

  .bar-change .bar3 {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

}

/* SLIDER */
@media (max-width: 1024px) {

  .box {
    width: 60px;
    height: 350px;
  }

  .active {
    width: 350px;
    height: 350px;
  }

  .box h2 {
    font-size: 20px;
    bottom: 30px;
    left: 20px;
  }

  .box p {
    font-size: 16px;
    bottom: 10px;
    left: 20px;
  }
}

@media (max-width: 768px) {
  .box-part {
    flex-direction: row;
    /* Stack boxes vertically */
    gap: 15px;
    gap: 9px;
    height: 350px;
    width: 100%;
  }

  .box-area .box-title h1 {
    font-size: 50px;
    padding: 0;
  }

  .box-area {
    height: 500px;
  }

  .box {
    width: 50px;
    height: 350px;
  }

  .active {
    width: 300px;
    height: 100%;
  }

  .box h2 {
    font-size: 18px;
    bottom: 20px;
    left: 15px;
  }

  .box p {
    font-size: 14px;
    bottom: 5px;
    left: 15px;
  }

  .box-title {
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .box-area {
    height: 400px;
    padding-top: 20px;
    width: 100%;
    flex-direction: column;
    gap: 6px;
    margin-left: 0;
    align-content: center;
  }

  .box-area .box-title h1 {
    font-size: 30px;
    padding: 0;
  }

  .box-part {
    flex-direction: row;
    gap: 9px;
    height: 350px;
    width: 90%;
  }

  .box {
    width: 40px;
    height: 100%;
  }

  .active {
    width: 80%;
    height: 100%;
  }

  .box h2 {
    font-size: 16px;
    bottom: 15px;
    left: 10px;
  }

  .box p {
    font-size: 12px;
    bottom: 5px;
    left: 10px;
  }
}

/* 2. About */
@media (min-width: 1025px) and (max-width: 1441px) {
  .about-me {
    height: auto;
    margin-bottom: 80px;
    padding-bottom: 20px;
  }

  .about-me-container {
    max-width: 1200px;
    padding: 40px 13px;
  }

  .about-me-flex-container {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .about-me-title {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .about-me-container {
    padding-bottom: 100px;
    align-content: center;
  }

  .about-me-title h1 {
    font-weight: 500;
    font-size: 30px;
  }

  .about-me-flex-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    gap: 50px;
  }

  .about-me-flex-container .about-me-content {
    flex-direction: row-reverse;
    margin-top: 20px;
  }

  .about-me-flex-container .about-me-content p {
    font-size: 16px;
    padding: 2px 2px 2px 2px;
  }


  .button-container {
    margin-top: 20px;
  }

  .outside-button {
    font-size: smaller;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .about-me-container {
    padding-bottom: 100px;
  }

  .about-me-title h1 {
    font-weight: 500;
    font-size: 50px;
  }

  .about-me-flex-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    gap: 5px;
    height: auto;
  }

  .about-me-image {
    scale: 70%;
  }

  .about-me-flex-container .about-me-content {
    flex-direction: row-reverse;
  }


  .button-container {
    margin-top: 0px;
    scale: 120%;
  }

  .outside-button {
    font-size: smaller;
  }
}


/* 3. Cards */


@media screen and (max-width: 1024px) {
  .col {
    width: calc(33.333333% - 32px);
  }
}

@media screen and (max-width: 768px) {
  .col {
    width: calc(50% - 32px);
  }

  .cards h1 {
    font-size: 50px;
    padding: 0;
  }

  .cards {
    margin-top: 40px;
  }
}

@media screen and (max-width: 512px) {
  .col {
    width: 80%;
    height: 80%;
    margin: 0 0 32px 0;
  }

  .cards h1 {
    font-size: 30px;
  }
}


/* 3. Testimonials */

@media screen and (max-width: 768px) {
  .testimonials {
    flex-direction: column;
    gap: 1rem;
  }

  .test-card {
    flex: 1 1 100%;
  }

  .testimonial-heading h1 {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
  }

  .testimonial-heading h4 {
    font-size: 25px;
    text-align: center;
  }

  .test-text h1 {
    font-size: 20px;
    font-weight: 300;
  }

  .test-text h2 {
    font-weight: 200;
  }

}

@media screen and (max-width: 500px) {
  .testimonials {
    padding: 1rem;
    /* Reduce padding for the overall section */
    align-items: center;
  }

  .test-card {
    flex: 1 1 70%;
    /* Slightly smaller width to allow some spacing */
    padding: 1rem;
    /* Reduce padding inside each card */
    margin: 0.5rem 0;
    /* Add vertical spacing between cards */
    width: 90%;
    height: max-content;
  }

  .testimonial-heading h1 {
    font-size: 40px;
    /* Reduce the font size of the heading */
  }

  .testimonial-heading h4 {
    font-size: 16px;
    /* Slightly smaller subheading */
    text-align: center;
  }

  .test-text h1 {
    font-size: 8px;
    /* Increase readability of text */
    font-weight: 400;
    /* Slightly bolder for visibility */
  }

  .test-text h2 {
    font-weight: 300;
    /* Adjust for consistency */
    font-size: 10px;
    /* Smaller text */
  }
}


/* 5. Contact */

@media (max-width: 850px) {
  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .contact-square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .contact-big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .contact-text {
    margin: 1rem 0 1.5rem 0;
  }

  .contact-social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .contact-square,
  .contact-big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .contact-text,
  .contact-information,
  .contact-social-media p {
    font-size: 0.8rem;
  }

  .contact-title {
    font-size: 1.15rem;
  }

  .contact-social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .contact-icon {
    width: 23px;
  }

  .contact-input {
    padding: 0.45rem 1.2rem;
  }

  .contact-btn {
    padding: 0.45rem 1.2rem;
  }
}

/* footer */
@media (max-width: 500px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    /* Full width for stacking */
    margin-bottom: 15px;
    /* Reduce space between sections */
    align-items: center;
    /* Center align content */
  }

  .footer-center {
    width: 100%;
    margin-bottom: 15px;
    align-items: flex-start;
    text-align: left;
  }

  .footer-center .single-cta {
    flex-direction: row;
    /* Keep icon and text inline */
    justify-content: flex-end;
    /* Push content to the right */
    gap: 8px;
    /* Small gap between icon and text */
  }

  .footer-center i {
    font-size: 14px;
    /* Smaller icon size */
    width: 25px;
    height: 25px;
    margin-right: 5px;
    /* Adjust spacing for compactness */
  }

  .footer-right ul {
    padding: 0;
    list-style: none;
    text-align: center;
    /* Center align text in opening hours */
  }

  .footer-right li {
    font-size: 14px;
    /* Reduce font size for smaller screens */
    padding: 2px 0;
    /* Compact spacing between items */
  }
}

@media (min-width: 501px) and (max-width: 768px) {
  .footer {
    flex-direction: row;
    align-items: flex-start;
    text-align: center;
    gap: 7px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    /* Full width for stacking */
    margin-bottom: 15px;
    /* Space between sections */
    align-items: center;
  }

  .footer-center {
    width: 100%;
    align-items: center;
    margin-bottom: 15px;
  }

  .footer-center .single-cta {
    flex-direction: row;
    /* Icon and text inline */
    justify-content: center;
    gap: 8px;
    /* Small gap between icon and text */
  }

  .footer-center i {
    font-size: 16px;
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }

  .footer-right ul {
    padding: 0;
    list-style: none;
    text-align: center;
  }

  .footer-right li {
    font-size: 14px;
    padding: 3px 0;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .footer {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    /* Maintain space between columns */
  }

  .footer-left,
  .footer-right {
    width: 20%;
    /* Narrower width for columns */
    align-items: flex-start;
  }

  .footer-center {
    width: 60%;
    /* Wider center column */
    margin-bottom: 0;
    align-items: flex-start;
  }

  .footer-center .single-cta {
    flex-direction: row;
    /* Keep icon and text inline */
    justify-content: flex-start;
    gap: 10px;
    /* Consistent gap */
  }

  .footer-center i {
    font-size: 18px;
    /* Slightly larger icons */
    width: 35px;
    height: 35px;
  }

  .footer-right p {
    text-align: left;
  }
}

/* FLOATING */
/* Floating Icons Container */
.floating-icons-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  /* Stack vertically */
  gap: 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Hover effect to flex icons upwards */
.floating-icons-container:hover {
  transform: translateY(-20px);
  /* Move the whole container upwards */
}

/* WhatsApp Container */
.whatsapp-container,
.mail-container,
.call-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: center;
  transition: transform 0.3s ease;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon img {
  width: 35px;
  height: 35px;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Mail Icon */
/* Mail Icon */
.mail-button i {
  font-size: 30px;
  /* Increase icon size */
  scale: 100%;
  /* Ensure proper scaling */
  color: #c7dcfd;
  /* Icon color */
  transition: transform 0.2s ease-out, color 0.2s ease-out;
}

.mail-button2:hover i {
  color: #013747;
  transform: scale(1.2);
  /* Slightly enlarge on hover */
}

.mail-button {
  display: flex;
  height: 60px;
  /* Slightly larger button */
  width: 60px;
  /* Slightly larger button */
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background-color: #001925;
  /* Ensure consistent styling */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mail-button2 {
  border: 10px solid #001925;
  transition: all 0.2s ease;
}

.mail-button2:hover {
  background-color: #c7dcfd;
  border: 2px solid #013747;
}

/* Call Icon */
.call-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #007BFF;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.call-icon i {
  font-size: 30px;
  color: white;
}

.call-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Popup Message */
.popup-message {
  margin-top: 8px;
  background-color: white;
  color: black;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.whatsapp-container:hover .popup-message,
.mail-container:hover .popup-message,
.call-container:hover .popup-message {
  opacity: 1;
  transform: translateY(0);
}
