
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #030303;
  --accent-color: #1acffc; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #1acffc;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #060606;
  --nav-dropdown-hover-color: #1acffc;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --default-color: #000000;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
}


:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Video Background Styles */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Default height */
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 70%;
  object-fit: cover; /* Ensure the video covers the entire header without distortion */
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3); /* Bottom shadow */
}

/* Adjust height for smaller screens (less than or equal to 768px) */
@media (max-width: 768px) {
  .video-background {
    height: 60%; /* Reduce video height on smaller screens */
  }
}


#header {
  position: sticky;
  overflow: hidden;
  height: 10vh; /* Set the header to take up the entire viewport height */
}

.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 200px;
  max-width: 250px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background-color: #2a2c39;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  display: flex;
  flex-direction: column; /* Stack the h2 and p vertically */
  justify-content: center; /* Vertically center */
  align-items: center; /* Horizontally center */
  text-align: center; /* Ensure text is centered */
}

.section-title h2 {
  font-size: 20px;
  font-weight: 500;
  padding: 40px;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1acffc;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  margin-top: 50vh;
}

@media (max-width: 768px) {
  .about {
    margin-top: 25vh;
  }
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/* General Features Section Styles */
.features {
  padding-top: 0;
  margin-top: 0;
}

.features .nav-tabs {
  border: 0;
  display: flex;
  justify-content: center; /* Centers the tabs horizontally */
  align-items: center;     /* Ensures the items are vertically centered */
  text-align: center;      /* Ensures text within the tabs is also centered */
  width: 100%;             /* Makes the tabs container stretch across full width */
}

.features .nav-item {
  flex: 1;  /* Ensures each tab item takes equal space */
  display: flex;
  justify-content: center;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 10px 20px;
  margin: 0 10px; /* Adds margin between tabs */
  transition: 0.3s;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Active and Hover States */
.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

/* Tab Icons and Text Adjustment for Smaller Screens */
@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px; /* Reduced icon size */
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px; /* Even smaller icon size */
  }

  .features .nav-link h4 {
    font-size: 14px; /* Smaller text for mobile */
  }
}

/* Tab Content Styles */
.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 15px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 15px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/* Image Styling */
.features .specifications-img {
  border-radius: 20px;
  max-width: 600px;
  max-height: 600px;
}

.features .carousel-inner {
  max-height: 600px; /* Adjust the height to a smaller value */
  overflow: hidden;  /* Ensure the images don't overflow */
}

.features .carousel-inner img {
  width: 100%;        /* Make images take up the full width of the container */
  height: auto;       /* Ensure the height adjusts according to the image's aspect ratio */
  object-fit: cover;  /* Make sure images cover the container area without distortion */
  border-radius: 20px; /* Optional: rounded corners for the images */
}

.features .model-image {
  border-radius: 20px;
  max-width: 100%;    /* Ensure the image takes up the full width of its container */
  max-height: 600px;  /* Limit the height of the image */
  object-fit: cover;  /* Ensure the image fills the container properly */
}

.features .carousel-control-prev-icon,
.features .carousel-control-next-icon {
  background-color: #b5b3b3; /* Optional: customize arrow color */
}

/* Google Maps Styles */
#features-tab-4 iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* About Images Section */
.about-images {
  display: flex;
  justify-content: center; /* Centers images horizontally */
  gap: 15px; /* Adjust the gap value to match the text space */
  margin-top: 15px;
}

.about-images img {
  width: 20%; /* Adjusts image width */
  border-radius: 20px; /* Rounds the corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
}


.carousel {
  position: relative;
  max-width: 350px;
  margin: auto;
}
.carousel-inner {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.carousel-item {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
}
.carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.carousel-controls button {
  background: rgba(0, 0, 0, 0.5);
  color: rgb(5, 199, 252);
  border: none;
  padding: 10px;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Price Section
--------------------------------------------------------------*/
/* Price Section */
.price {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: space-between; /* Space between the title at the top and content at the bottom */
  align-items: center; /* Center content horizontally */
}

/* Title */
.price .section-title {
  text-align: center;
}

.price .section-title h2 {
  font-size: 20px;
  color: #1acffc;
  text-transform: uppercase;

}

/* Center the content in the container */
.price .container {
  display: flex;
  flex-direction: column; /* Stack the items vertically */
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%; /* Full width to help center content */
  flex-grow: 1; /* Allow container to grow and fill available space */
}

/* Style the unordered list */
.price ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px; /* Add margin to the bottom of the list */
}

.price ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the items horizontally */
}

.price ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.price ul li span {
  font-weight: 500;
  color: #333;
}

/* Add space for p element */
.price p {
  margin-top: auto; /* Push p element to the bottom */
  font-size: 20px;
  font-weight: 500;
  color: #333;
  text-align: center;
}



/* Gallery */

#galleryCarousel {
  width: 100%; /* Full width */
  max-width: 120vh; /* Set a maximum width for the carousel */
  margin: auto; /* Center the carousel horizontally */
}
@media (max-width: 1200px) {
  #galleryCarousel {
    max-width: 100%; /* Allow the carousel to take full width on medium screens */
  }
}

/* Responsive styles for small screens (max-width: 576px) */
@media (max-width: 576px) {
  #galleryCarousel {
    max-width: 100%;
  }
  .carousel-inner img {
    height: auto; /* Let the height adjust based on the width */
    max-height: 250px; /* Limit the maximum height to avoid large images */
    object-fit: cover; /* Ensure images maintain aspect ratio */
  }
}


/* Style for the carousel control buttons (Previous and Next) within .gallery */
.gallery .carousel-control-prev, 
.gallery .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  padding: 10px;
  z-index: 1; /* Ensure buttons are on top of the carousel images */
  transition: background-color 0.3s ease; /* Smooth background transition */
}



/* Style for the icons inside the buttons */
.gallery .carousel-control-prev-icon, 
.gallery .carousel-control-next-icon {
  width: 30px;
  height: 30px;
  background-color: white; /* White icon color */
  border-radius: 50%;
}

/* Hover effect for icons */
.gallery .carousel-control-prev:hover .carousel-control-prev-icon, 
.gallery .carousel-control-next:hover .carousel-control-next-icon {
  background-color: #1acffc; /* Blue color when hovered */
}

/* Visually hide the text but keep it for accessibility */
.gallery .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}


/* Join Us Section */
.join-us {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: space-between; /* Space between title at the top and content at the bottom */
  align-items: center; /* Center content horizontally */
}

/* Title */
.join-us .section-title {
  text-align: center;
}

.join-us .section-title h2 {
  font-size: 20px;
  color: #1acffc;
  text-transform: uppercase;
}

/* Container for content */
.join-us .container {
  display: flex;
  flex-direction: column; /* Stack the items vertically */
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%; /* Full width to help center content */
  flex-grow: 1; /* Allow container to grow and fill available space */
}

/* Style for the row */
.join-us .row {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Style for each column in the row */
.join-us .col-lg-6 {
  flex: 1;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-us .col-lg-6 img {
  width: 100%;
  max-width: 500px; /* Adjust the image size */
  border-radius: 10px;
}

/* Paragraph at the bottom */
.join-us p {
  margin-top: auto; /* Push p element to the bottom */
  font-size: 20px;
  color: #333;
  text-align: center;
}


/* Join Us Section */
.join-us {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: space-between; /* Space between title at the top and content at the bottom */
  align-items: center; /* Center content horizontally */
  width: 100%;
}

/* Title */
.join-us .section-title {
  text-align: center;
}

.join-us .section-title h2 {
  font-size: 24px; /* Adjusted font size for better visibility */
  color: #1acffc;
  text-transform: uppercase;
}

/* Container for content */
.join-us .container {
  display: flex;
  flex-direction: column; /* Stack the items vertically */
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%; /* Full width to help center content */
  flex-grow: 1; /* Allow container to grow and fill available space */
}

/* Style for the row */
.join-us .row {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Style for each column in the row */
.join-us .col-lg-6 {
  flex: 1;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-us .col-lg-6 img {
  width: 100%;
  max-width: 500px; /* Adjust the image size */
  border-radius: 10px;
}

/* Paragraph at the bottom */
.join-us p {
  margin-top: auto; /* Push p element to the bottom */
  font-size: 20px;
  color: #333;
  text-align: center;
  margin-bottom: 30px; /* Adding margin at the bottom for spacing */
}

.join-us .join-us-content {
  text-align: center;
  margin-bottom: 30px; /* Add space between the text and the video */
}

/* Video container styling */
.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
}

/* Video Styling */
.video-container video {
  max-width: 50%; /* Ensure video doesn't overflow the container */
  height: auto; /* Maintain the aspect ratio */
  object-fit: cover; /* Ensure video fills the container without stretching */
  border-radius: 20px;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .video-container video {
    width: 100%; /* Make the video a little bigger on smaller screens */
    height: auto;
  }
  /* Adjust content padding/margins for small screens */
  .join-us p {
    font-size: 18px; /* Smaller font size on mobile */
  }
}

