/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Colors and styling based on ReactJS code */
:root {
  --primary-color: #007676; /* Replace with your primary color */
  --secondary-color: #00A08E; /* Replace with your secondary color */
  --tertiary-color: #B09C00;
  --fourth-color: #EFAE14;
  --text-color: #000000;
  --bg-color: #eeeeee;
}

.text-headings-h3{
  font-family: 'Mont', sans-serif;
  font-weight: 600; /* ExtraLight */
  letter-spacing: 2px; /* Adjust letter spacing as needed */
}

.text-thin {
  font-family: 'Mont', sans-serif;
  font-weight: 600; /* ExtraLight */
  letter-spacing: 2px; /* Adjust letter spacing as needed */
}

.text-thinner {
  font-family: 'Mont', sans-serif;
  font-weight: 300; /* ExtraLight */
  letter-spacing: 2px; /* Adjust letter spacing as needed */
}

.text-thinner-2{
  font-family: 'Mont', sans-serif;
  font-weight: 100; /* ExtraLight */
  letter-spacing: 2px; /* Adjust letter spacing as needed */
}

/* Span color styling */
.highlight-green {
  color: #007676;/* Green color */
}

.highlight-greener {
  color: #014444;/* Green color */
}

.highlight-yellow{
  color: #EFAF14;
}

.shadow-green {
  color: #007676; /* Dark green color */
  text-shadow: 0px 2px 3px #ffffff; /* White outline effect */
}


.font-mont-banner {
  font-family: 'Mont', sans-serif;
  font-weight: 400; /* Ensure the weight matches the ExtraLight font */
  letter-spacing: 1px; /* Adjust letter-spacing as needed */
}

/* Garet */
@font-face {
  font-family: 'Garet';
  src: url('./fonts/Garet-Book.otf') format('opentype'),
       url('./fonts/Garet-Book.ttf') format('truetype'),
       url('./fonts/Garet-Book.woff') format('woff'),
       url('./fonts/Garet-Book.woff2') format('woff2');
       
  font-weight: 500; /* Medium */
  font-style: normal;
}

.garet-headings-h3{
  font-family: 'Garet', 'opentype';
  font-weight: 600; /* ExtraLight */
  letter-spacing: 2px; /* Adjust letter spacing as needed */
}

.garet-thin {
  font-family: 'Garet', 'truetype';
  font-weight: 600; /* ExtraLight */
  letter-spacing: 2px; /* Adjust letter spacing as needed */
}

.garet-thin-2 {
  font-family: 'Garet', 'truetype';
  font-weight: 100; /* ExtraLight */
  font-size: 12px;
  letter-spacing: 2px; /* Adjust letter spacing as needed */
}


.garet-thinner {
  font-family: 'Garet', 'woff';
  font-weight: 300; /* ExtraLight */
  letter-spacing: 2px; /* Adjust letter spacing as needed */
}

/* Quinzey Font */
@font-face {
  font-family: 'Quinzey';
  src: url('./fonts/Quinzey.otf') format('opentype');
  font-weight: 200; /* ExtraLight */
  font-style: normal;
}

@font-face {
  font-family: 'Quinzey';
  src: url('./fonts/Quinzey_Medium.otf') format('opentype');
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'Quinzey';
  src: url('./fonts/Quinzey_Bold.otf') format('opentype');
  font-weight: 900; /* Bold */
  font-style: normal;
}

/* Class for headings */
/* Class for thin text */
.quinzey-thin {
  font-family: 'Quinzey', sans-serif;
  font-weight: 200; /* ExtraLight */
  letter-spacing: 2px; /* Adjust letter spacing as needed */
  font-size: 16px; /* Add font-size if needed */
}

/* Class for thinner text */
.quinzey-thinner {
  font-family: 'Quinzey', sans-serif;
  font-weight: 900; 
  letter-spacing: 12px; 
  font-size: 24px;
}

.quinzey-headings-h1 {
  font-family: 'Quinzey', sans-serif;
  font-weight: 900; 
  letter-spacing: 2px; 
  color: #007676;/* Green color */
  font-size: 40px; 
}

.quinzey-headings-h3 {
  font-family: 'Quinzey', sans-serif;
  font-weight: 900; 
  letter-spacing: 4px; 
  color: #000; 
  font-size: 18px; 
  margin-top: 15px; 
  margin-left: 1em;
}

.quinzey-headings-h4 {
  font-family: 'Quinzey', sans-serif;
  font-weight: 900; 
  letter-spacing: 2px; 
  color: #007676;/* Green color */
  font-size: 28px; 
}

.quinzey-headings-h6 {
  font-family: 'Quinzey', sans-serif;
  font-weight: 900; 
  letter-spacing: 2px; 
  color: #007676;/* Green color */
  font-size: 20px; 
}

/* Span color styling */
.highlight-green {
  color: #007676;/* Green color */
}

.highlight-greener {
  color: #014444;/* Green color */
}

.highlight-yellow{
  color: #EFAF14;
}

.highlight-quinz {
  font-family: 'Quinzey', sans-serif;
  font-weight: 900; /* Bold weight */
  letter-spacing: 2px;
  color: #007676; /* Green color */
  font-size: 20px;
  text-shadow: 1px 1px 2px #ffffff; /* Optional subtle white outline */
}

/* General Navbar Styles */
.navbar {
display: flex;
justify-content: space-between;
padding: 1em 2em;
background-color: #ffffff;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
position: fixed;
top: 0;
width: 100%;
z-index: 1000; /* Ensures the navbar stays above other content */
}

.logo img {
width: 120px;
}

.nav-list {
list-style-type: none;
display: flex;
gap: 2em;
color: #000;
margin-top: 1em;
padding-right: 4.3em;
}

.nav-list li {
position: relative;
}

.nav-list a {
color: #000000;
text-decoration: none;
font-weight: bold;
}

.nav-list a:hover {
color: #00A08E;
}

/* Contact Us button styling */
.contact-button {
display: inline-flex;
align-items: center;
background-color: #ffffff; /* Green background */
color: #ffffff; /* White text */
padding: 10px 20px;
border-radius: 5px;
border: 2px solid #007676;
font-weight: bold;
text-decoration: none;
transition: background-color 0.3s ease;
margin-top: -0.5em;
margin-right: -4em;
}

/* Hover effect */
.contact-button:hover {
  background-color: #007676; /* Lighter green on hover */
color: #fff;
border-radius: 5px;
}

.quinzey-headings-h3.contact-button {
  color: #007676; /* Replace with your desired color */
}

.quinzey-headings-h3.contact-button:hover {
  color: #ffffff; /* Replace with your hover color */
}

/* Responsive Navbar Toggle Button */
.navbar-toggle {
font-size: 24px;
padding: 10px;
background-color: #3692920c;
color: #007676;
border: none;
cursor: pointer;
display: none; /* Hidden by default */
}

/* Responsive Nav Styles */
.responsive-nav {
display: none;
position: fixed;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
width: 100vh;
max-width: 400px;
height: 100vh;
background-color: #024141;
color: #fff;
border-radius: 8px;
z-index: 20;
padding: 2em 1em;
}

.responsive-logo {
display: flex;
justify-content: center;
margin-bottom: 1em;
}

.responsive-logo img {
width: 290px;
/* background: #fff; */
}

.responsive-nav ul {
list-style-type: none;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 5px;
}

.responsive-nav ul li {
margin: 25px 0;
/* margin-top: 4em; */
}

.responsive-nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
font-size: 30px;
}

.responsive-nav ul li a:hover {
color: #ddd;
}
/* Show the responsive nav when active */
.responsive-nav.active {
display: block;
}


/* Show hamburger menu between 340px and 649px */
@media (min-width: 339px) and (max-width: 799px) {
.navbar-toggle {
  display: inline-block;
}

/* Hide main nav menu on smaller screens */
.nav-menu {
  display: none;
}
}

/* Show main nav menu above 649px */
@media (min-width: 650px) {
.responsive-nav {
  display: none; /* Always hide responsive nav */
}
}




/* Display main navigation when screen is 900px or above */
/* @media (min-width: 900px) {
  .navbar-toggle {
    display: none;
  }
} */

/* Hero Section Styling */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-color);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0 1rem;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 2em;
  /* animation: fadeIn 1s ease-in-out; */
}

/* Fade-in animation */
.fade {
  animation: fadeOutIn 1s ease-in-out;
}

.hero-subheading {
  font-size: 2rem;
  /* margin-bottom: 0.9rem; */
  margin-top: 1.5rem;
}

.learn-more-btn {
  position: relative;
  width: 220px;
  height: 55px;
  background: #faf7f77c;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #014444;
  text-decoration: none;
  border: 2px solid #014444;
  padding-left: 40px;
  transition: 0.5s;
  font-size: 19px;
  margin-top: 3em;
  /* margin-left: 2em; */
  font-family: 'Garet', 'truetype';
  font-weight: 900; 
  letter-spacing: 2px; 
}

.learn-more-btn:hover {
  padding-left: 0;
  padding-right: 40px;
  color: #ffffff;
  text-decoration: none;
  background: #007676;
  font-weight: 900;
}

.learn-more-btn .icon-container {
  position: absolute;
  left: 5px;
  width: 45px;
  height: 45px;
  background-color: #007676;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111;
  font-size: 1.5em;
  
}

.learn-more-btn:hover .icon-container {
  left: calc(100% - 55px);
}

.learn-more-btn .icon-container i {
  color: rgba(235, 235, 235, 0.9);
  font-size: 24px;
}

/* Heading Fade Animation */

@keyframes fadeOutIn {
  0% {
      opacity: 1;
      transform: translateY(0);
  }
  49% {
      opacity: 0;
      transform: translateY(-10px); /* Moves up slightly while fading out */
  }
  50% {
      opacity: 0;
      transform: translateY(10px); /* Moves down slightly before fading in */
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Styling */
@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.5rem;
  }
  .hero-subheading {
    font-size: 1.5rem;
  }
}

@media (min-width: 339px) and (max-width: 649px) {
  .hero-heading {
      font-size: 2rem;
      margin-top: 1em;
  }
  .learn-more-btn {
      position: relative;
      width: 170px;
      height: 42px;
      font-size: 15px;
      margin: 2em auto;
      font-family: 'Garet', 'truetype';
      font-weight: 900; /* ExtraLight */
      letter-spacing: 2px; /* Adjust letter spacing as needed */
  }
  .learn-more-btn .icon-container {
      width: 30px;
      height: 30px;   
      margin-left: 0.2em;   
  }
  .learn-more-btn .icon-container i {
      margin-left: 0.1em;
  }
}

/* ================= Introduction Section ================= */
/* Introduction Section Styling */
.introduction-section {
  padding: 2rem 0;
  background-color: #ffffff;
}

.container-intro {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  gap: 1.8rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card {
  background-color: #f8f8f8;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-tag {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive Grid for larger screens TABLETS */
/* Responsive layout for screens less than 900px */  
@media (min-width: 868px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* <!-- ================= ABOUT US SECTION ================= --> */
.about-us-section {
  padding: 4rem 0;
  background-color: #f0f0f0;
}

.container-about {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  margin-top: 1.3em;
}

.section-title a {
  color: inherit;
  text-decoration: none;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.video-wrapper {
  background-color: #f8f8f8;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  height: 80vh;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.story-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  position: relative;
  width: 420px;
  height: 55px;
  background: #faf7f7;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #007676;
  text-decoration: none;
  border: 2px solid #014444;
  padding-left: 40px;
  transition: 0.5s;
  font-size: 19px;
  margin-top: 0.7em;
  /* margin-left: 2em; */
  font-family: 'Garet', 'truetype';
  font-weight: 900; 
  letter-spacing: 2px; 
}

.read-more-btn:hover {
  padding-left: 0;
  padding-right: 40px;
  color: #ffffff;
  text-decoration: none;
  background: #007676;
  font-weight: 900;
}

.read-more-btn .icon-container {
  position: absolute;
  left: 5px;
  width: 45px;
  height: 45px;
  background-color: #007676;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111;
  font-size: 1.5em;
  
}

.read-more-btn:hover .icon-container {
  left: calc(100% - 55px);
}

.read-more-btn .icon-container i {
  color: rgba(235, 235, 235, 0.9);
  font-size: 24px;
}

.story-visual {
  position: relative;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #dff4f1, #f7f7f7);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

.story-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-badge-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.story-badge-group {
  position: absolute;
  inset: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.story-badge-group.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

.story-badge-group.next {
  transform: translateX(100%);
  opacity: 0;
  z-index: 1;
}

.story-badge-group.exit-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}

.story-badge-group.enter-active {
  transform: translateX(0);
  opacity: 1;
  z-index: 3;
}

.story-badge {
  position: absolute;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 118, 118, 0.15);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

.story-badge h4 {
  color: #007676;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.story-badge p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 1px;
}

.badge-top {
  top: 24px;
  left: 24px;
}

.badge-bottom {
  bottom: 24px;
  right: 24px;
}

@media (max-width: 649px) {
  .story-visual {
    min-height: 420px;
  }

  .story-badge-group {
    position: absolute;
    inset: 0;
  }

  .story-badge {
    max-width: calc(100% - 2rem);
  }

  .badge-top {
    top: 20px;
    left: 16px;
    right: 16px;
  }

  .badge-bottom {
    bottom: 20px;
    left: 16px;
    right: 16px;
  }
}

/* Responsive layout for larger screens */
@media (min-width: 649px) {
  .content-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 340px) and (max-width: 649px) {
  .section-title {
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
  }
  .story-title {
      font-size: 1.5rem;
      text-align: center;
      margin-top: -2em;
    }
    .story-description {
      color: #000000;
      text-align: center;
      font-size: 0.9em;
      padding-right: 0.2em;
    }
    .read-more-btn {
      position: relative;
      width: 338px;
      height: 42px;
      font-size: 15px;
      margin: 2em auto;
      font-family: 'Garet', 'truetype';
      font-weight: 900; /* ExtraLight */
      letter-spacing: 2px; /* Adjust letter spacing as needed */
  }
  .read-more-btn .icon-container {
      width: 30px;
      height: 30px;   
      margin-left: 0.2em;   
  }
  .read-more-btn .icon-container i {
      margin-left: 0.1em;
  }
}


/* <!-- ================= FACILITY SECTION ================= --> */
.facility-section {
  padding: 3rem 1rem;
  background-color: #f8f8f8;
}

.container-facility {
  max-width: 1400px;
  margin: 0 auto;
}

.facility-heading-link {
  text-decoration: none;
}

.facility-heading {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
}

.facility-carousel {
  display: flex;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-behavior: smooth;
  gap: 1rem;
}

.facility-image {
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.facility-img {
  width: 20em;
  height: 15em;
  object-fit: cover;
  border-radius: 8px;
}

.facility-image:hover {
  transform: translateY(-5px) scale(1.05);
}

/* <!-- ================= TECH SECTION ================= --> */
.tech-section {
  padding: 4rem 1rem;
  background-color: #f8f8f8;
}

.tech-heading-link {
  text-decoration: none;
}

.container-tech {
  max-width: 1400px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* margin-top: -60px; */
}



.left-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* margin-top: 50px; */
}

.card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  margin-top: 2.6em;
}

.card:hover {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.right-column {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 80%;
  overflow: hidden;
  border-radius: 8px;
}

.slider-img {
  width: 100%;
  height: 80%;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.slider-img.fade-out {
  opacity: 0;
  transform: scale(1.02);
}

.slider-img.fade-in {
  opacity: 1;
  transform: scale(1);
}

.overlay-text {
  position: absolute;
top: 5em;
left: 2.7em;
width: 89%;
height: 63%;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 2rem;
text-align: center;
opacity: 0;
transition: opacity 0.3s ease;
border-radius: 8px;
}

.image-slider:hover .overlay-text {
  opacity: 1;
}

@media (min-width: 340px) and (max-width: 649px) {
  .tech-section {
      padding: 1rem 1rem;
    }
  .card {
      margin-top: 0.5em;
      margin-bottom: 1.6em;
    }
}

@media (min-width: 900px) {
  .row {
    flex-direction: row;
  }
}


/* <!-- ================= CONTACT SECTION ================= --> */
.contact-section {
  padding: 4rem 1rem;
  background-color: #f8f8f8;
  margin-top: -11em;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.section-subheading {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4CAF50; /* Primary color */
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #007676; /* Primary color */
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #014444; /* Secondary color */
}

@media (min-width: 340px) and (max-width: 649px){
  .contact-section {
      padding: 4rem 1rem;
      background-color: #f8f8f8;
      margin-top: 0.5em;
    }
    .section-heading {
      font-size: 2rem;
    }
}


/* <!-- ================= FOOTER SECTION ================= --> */
/* Footer Styles */
.footer {
  position: relative; /* Ensure it positions correctly for the overlay */
  background-image: url('assets/bg-image.jpg'); /* Path to your image */
  background-size: cover; /* Cover the entire footer */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  color: #000; /* Text color */
  padding: 2rem;
}

/* Overlay for opacity */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5); /* White overlay with 50% opacity */
  z-index: 1; /* Place it behind content */
}


.footer-container {
  position: relative; /* Ensure it appears above the overlay */
  z-index: 2; /* Ensure it's above the overlay */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo .logo {
  width: 160px;
  position: relative; /* Ensure it appears above the overlay */
  z-index: 2;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 2em;
}

.footer-link:hover {
  color: #EFAE14; /* Primary color */
}

.social-icons {
  display: flex;
  gap: 2rem;
  margin-right: 1em;
}

.social-icon {
  color: #000;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #EFAE14; /* Primary color */
}

.footer-copyright {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #333;
  width: 100%;
  position: relative; /* Ensure it appears above the overlay */
  z-index: 2;
}

/* Responsive adjustments */
@media (min-width: 340px) and (max-width: 649px) {
  .social-icons {
      margin-right: -1.5em;
    }
    .footer-copyright {
      margin-left: 1em;
    }
    .form-container{
      text-align: center;
    }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
  }
  .video-wrapper {
    background-color: #eeeeee;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: none;
  }
  
  .about-video {
    width: 100%;
    height: 90%;
    object-fit: cover;
  }
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
}
