/* Colors and themes */

:root {
  --main-white: #fff;
  --main-black: #000;
  --main-gray: #e4e4e4;
  --light-gray: #f3f3f3;
  --main-blue: #1965b6;
  --hover-red: #ff0000;
  --button-red: #ea5356;
  --tertiary-red: #bb1c2c;
  --site-velvet: #7a163c;
  --blue-grey: #f7f9fb;

  --dark-text: var(--main-black);
  --light-text: var(--main-white);

  --navbar-text: var(--dark-text);
  --hover-color: var(--hover-red);
  --secondary-color: var(--button-red);
  --highlight-color: var(--button-red);
  --header-decoration: var(--tertiary-red);
  --section-background: var(--main-gray);
  --section-background-light: var(--blue-grey);

  --light-theme: var(--main-white);
  --main-theme: var(--site-velvet);

  --lato-font: "Lato", Sans-serif;
  --poppin-font: "Poppins", sans-serif;
  --roboto-font: "Roboto", sans-serif;
  --montserrat-font: "Montserrat", Sans-serif;

  --footer-font: var(--lato-font);
  --title-font: var(--poppin-font);
  --subtitle-font: var(--roboto-font);
  --button-font: var(--montserrat-font);
}

/* Main CSS */

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  /* Hides horizontal overflow */
  width: 100%;
}

p {
  font-family: var(--roboto-font);
}

h2,
h3 {
  font-family: var(--title-font);
}

.main-content {
  flex: 1;
}

/* Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 0px 20px;
  background-color: var(--light-text);
  position: relative;
  /* Keeps everything inside */
}

.top-bar {
  background: var(--main-theme);
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.top-bar a {
  color: var(--light-text);
  text-decoration: none;
}

.contact-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Make navbar a flex container */
.navbar {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo and company name */
.header-branding {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 100px;
  width: auto;
}

.company-name {
  font-size: 26px;
  font-weight: 600;
  white-space: normal;
}

.navbar-nav .nav-link {
  --bs-nav-link-padding-x: 1.5rem !important;
  --bs-nav-link-padding-y: 1.2rem !important;
  font-family: var(--title-font);
}

/* Ensure the navbar collapse doesn't push branding down */
.navbar-collapse {
  flex-grow: 0;
  /* Prevents it from expanding downward */
  justify-content: flex-end;
}

/* Ensure the toggler aligns properly */
.navbar-toggler {
  margin-left: auto;
}

/* Enable dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Prevent dropdown from flashing */
.dropdown-menu {
  display: none;
  transition: all 0.3s ease-in-out;
  border: none;
  box-shadow: none;
}

.dropdown-menu .dropdown-item {
  padding: 10px 15px;
}

/* Fix spacing issue when hovering */
.navbar .dropdown-menu {
  top: 100%;
  left: 0;
}

/* Style the parent menu item */
.dropdown-submenu {
  position: relative;
}

/* Hide the second-level dropdown by default */
.sub-dropdown-menu {
  display: none;
  position: absolute;
  list-style: none;
  left: 100%;
  top: 0;
  min-width: 125px;
  background: var(--light-text);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 5px 0;
}

/* Show submenu when hovering over parent */
.dropdown-submenu:hover .sub-dropdown-menu {
  display: block;
}

/* Style the right arrow */
/* Style the right arrow */
.submenu-arrow {
  float: right;
  font-size: 10px;
  color: #555;
  transition: transform 0.2s ease-in-out;
  line-height: 1;
  vertical-align: middle;
  margin-top: 7px;
}

/* Make the arrow darker when hovered */
.dropdown-submenu:hover .submenu-arrow {
  color: #000;
  transform: translateX(3px);
  /* Moves arrow slightly to the right on hover */
}

.mobile-menu {
  padding-top: 10px;
}

.mobile-menu .nav-link {
  padding: 10px 0px 10px 10px;
}

.mobile-menu .nav-link:hover {
  background-color: var(--light-gray);
  color: var(--tertiary-red);
}

/* Desktop Menu: Bold text for active page */
.desktop-menu .nav-link.active {
  font-weight: bold;
}

/* Mobile Menu: Background and text color for active page */
.mobile-menu .nav-link.active {
  background-color: var(--light-gray);
  color: var(--tertiary-red);
}

/* Hide top-bar on screens smaller than 950px */
@media (max-width: 950px) {
  .top-bar {
    display: none;
  }
}

/* Adjustments for smaller screens */
@media (max-width: 769px) {
  #desktopMenu {
    display: none !important;
  }
}

@media (min-width: 768px) {
  #mobileMenu {
    display: none !important;
  }
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .header-branding {
    gap: 10px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    /* Prevent the logo and text from stacking */
    max-width: 70%;
    /* Prevent excessive stretching */
  }

  .company-name {
    white-space: normal;
    /* Allow wrapping */
    max-width: 100px;
    /* Adjust width for better wrapping */
  }

  .navbar-toggler {
    margin-left: auto;
    /* Push hamburger menu to the right */
  }
}

.header-image {
  position: relative;
  width: 100%;
  min-height: 800px;
  /* Ensures it doesn’t shrink too much */
  height: auto;
  /* Makes it fill the screen on larger viewports */
  overflow: hidden;
}

.header-banner .header-image {
  min-height: auto;
  height: 200px;
  object-position: center 80%;
}

.header-banner .header-image img {
  object-position: center 100%;
}

.header-banner .main-header-text {
  margin-bottom: 0px;
}

.header-image img {
  width: 100%;
  min-height: inherit;
  /* Inherits the min-height from the parent */
  height: 100%;
  object-fit: cover;
  /* Ensures the image fills the area */
}

.header-text {
  position: absolute;
  top: 50%;
  /* Adjust vertical positioning */
  left: 30%;
  /* Adjust horizontal positioning */
  transform: translate(-50%, -50%);
  /* Center the text container */
}

.top-header-text {
  color: var(--dark-text);
  font-family: var(--subtitle-font);
  font-size: 17px;
  font-weight: 600;
  margin: 0px 0px 10px 0px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 10px;
}

.top-header-text::before {
  content: "";
  display: block;
  width: 40px;
  height: 1.5px;
  background-color: var(--header-decoration);
  margin-top: 9px;
}

.main-header-text {
  font-family: var(--title-font);
  color: var(--light-text);
  font-size: 58px;
  font-weight: 700;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  /* Align text to the left */
  border-left: 5px solid var(--highlight-color);
  /* Creates the red left line */
  padding-left: 15px;
  /* Space between text and the line */
  margin-bottom: 20px;
}

.bottom-header-text {
  color: var(--light-text);
  font-family: var(--subtitle-font);
  font-size: 16px;
  margin: 0px;
  padding-left: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

/* Button Container */
.button-container {
  display: flex;
  /* Ensures buttons align side by side */
  gap: 20px;
  /* Space between buttons */
  justify-content: center;
  /* Aligns buttons in the center */
  margin-top: 20px;
  /* Space from text */
  width: 70%;
}

/* Ensures both buttons take up equal width */
.button-container .btn {
  flex: 1;
  /* Makes both buttons take up equal space */
  text-align: center;
}

/* General Button Styles */
.btn {
  padding: 16px 24px;
  font-size: 15px;
  font-family: var(--button-font);
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 50px;
  border-width: 2px 2px 2px 2px;
  /* Makes them pill-shaped */
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: 90%;
  /* Makes each button take half of the container */
}

/* Book a Tour Button */
.book-tour {
  background: transparent;
  color: var(--light-text);
  border: 2px solid var(--light-text);
}

.book-tour:hover {
  background: var(--header-decoration);
  color: var(--light-text);
  border-color: var(--header-decoration);
}

/* Learn More Button */
.learn-more {
  background: var(--header-decoration);
  color: var(--light-text);
  border: 2px solid var(--header-decoration);
}

.learn-more:hover {
  background: var(--header-decoration);
  color: var(--light-text);
  border: 2px solid var(--header-decoration);
}

@media (max-width: 761px) {
  .header-text {
    padding: 0px 10px 0px 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .top-header-text {
    justify-content: center;
    gap: 10px;
    color: var(--light-text);
  }

  .top-header-text::before {
    height: 1.5px;
    margin-top: 9px;
  }

  .main-header-text {
    text-align: center;
    border-left: none;
    padding-left: 0;
    font-size: 43px;
  }

  .bottom-header-text {
    text-align: center;
    padding-left: 0;
  }

  /* Stack buttons in a column */
  .button-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .button-container .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Footer */

#footer {
  background-color: var(--main-theme);
  color: var(--light-text);
  margin-top: auto;
  padding: 20px 0;
}

#footer .logo img {
  width: 150px;
  height: auto;
  max-width: 100%;
  margin-bottom: 15px;
}

#footer p {
  font-size: 14px;
  font-family: var(--footer-font);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

#footer .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-item-title {
  font-size: 20px;
  font-family: var(--title-font);
  font-weight: 800;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
}

.footer-list {
  font-size: 14px;
  font-family: var(--title-font);
  list-style: none !important;
  /* Removes default bullets */
  padding: 15px 0 0 0;
}

.footer-list li ul {
  margin-bottom: 5px;
}

.footer-list ul {
  margin-bottom: 20px;
}

.list-title {
  margin-bottom: 5px;
}

.list-title a {
  text-decoration: none;
  color: var(--light-text);
}

.list-items {
  list-style-type: disc;
  font-family: var(--subtitle-font);
  /* Adds bullet points */
  padding-left: 20px;
  /* Indents the list items */
}

.list-items li {
  padding: 5px 0;
}

.list-items li a {
  color: var(--light-text);
  text-decoration: none;
}

#footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

#footer .contact-item {
  display: flex;
  align-items: center;
  padding-top: 13px;
  gap: 8px;
}

#footer .contact-item a {
  font-size: 14px;
  font-family: var(--subtitle-font);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

#footer .phone a,
#footer .email a {
  color: var(--light-text);
  text-decoration: none;
}

.email-widget {
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  width: 75%;
}

.email-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid var(--dark-text);
  border-radius: 50px 0 0 50px;
  background-color: var(--light-text);
  color: black;
}

.email-button {
  width: 50px;
  min-width: 50px;
  background-color: var(--secondary-color);
  border: none;
  padding: 13px 17px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-button i {
  color: var(--light-text);
  font-size: 16px;
}

.socials-item p {
  font-size: 14px;
  padding-top: 10px;
  font-family: var(--subtitle-font);
}

.footer-disclaimer {
  text-align: center;
  font-size: 14px;
  font-family: var(--subtitle-font);
  color: var(--light-text);
  margin-top: 20px;
  /* Space between footer content and disclaimer */
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* Optional: subtle divider */
}

.footer-img a {
  color: var(--light-text);
}

@media (max-width: 768px) {
  #footer .footer-img .logo,
  #footer .footer-img p {
    text-align: center;
  }

  #footer .footer-img .logo img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    /* Centers the image */
  }
}

/* faq page */
.faq-heading {
  font-family: sans-serif;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.faq-section.learn-more-section {
  display: flex;
  flex-direction: column; /* Ensures content stacks properly */
  align-items: flex-start; /* Aligns content to the start (left) */
  text-align: left; /* Ensures text is left-aligned */
  padding-bottom: 0px;
  padding-top: 0px;
}

.faq-section.learn-more-title {
  padding-bottom: 35px;
}

.faq-section.learn-more-section .learn-more-row {
  padding-top: 20px;
}

.faq-section.learn-more-section:last-of-type {
  padding-bottom: 100px; /* Adjust as needed */
}

@media (max-width: 572px) {
  .faq-section.learn-more-section .learn-more-row {
    padding-left: 5px;
    padding-right: 5px;
  }

  .faq-section.learn-more-section .icon {
    margin: 0px;
  }
}

/* target the line */
.line {
  width: 50px;
  height: 3px;
  background-color: #ff0000;
  margin: 20px auto;
  border-radius: 5px;
}

/* FAQ PAGE */
.faq-heading {
  font-family: sans-serif;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

/* target the line */
.line {
  width: 50px;
  height: 3px;
  background-color: #ff0000;
  margin: 20px auto;
  border-radius: 5px;
}

.accordion-button {
  background-color: var(--main-theme);
  color: var(--light-text);
  transition: background-color 0.3s;
}

.accordion-button:not(.collapsed) {
  background-color: var(--tertiary-red);
  color: var(--light-text);
}

.accordion-button:focus {
  box-shadow: none;
}

/* icon */
.contact-info-faq {
  padding: 40px 0;
}

.contact-info-faq .container {
  /* Targets the inner container */
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  /* Distribute groups evenly */
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
}

.contact-group-faq {
  display: flex;
  align-items: flex-start;
  /* Align items to the top */
  margin-bottom: 20px;
  /* Space between groups */
}

.icon {
  margin-right: 20px;
  width: 60px;
  /* Example icon size */
  height: 60px;
  /* Example icon size */
  border-radius: 50%;
  /* Make icon round */
  overflow: hidden;
  /* Hide overflowing image content */
  padding: 10px;
}

.icon img {
  max-width: 80%;
  max-height: 80%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  /* Or contain, depending on your preference */
}

.text h3 {
  margin-bottom: 10px;
}

.text p {
  margin-bottom: 5px;
}

.text a {
  color: var(--tertiary-red);
  /* Example link color */
  text-decoration: none;
}

.text a:hover {
  text-decoration: underline;
}

/* Change color on hover */
.faq-section.learn-more-section a:hover {
  color: var(--header-decoration); /* Change to your desired hover color */
  text-decoration: underline; /* Optional: add underline on hover */
}

.contact-info-faq {
  background-color: #f8f8f8;
  /* Example background color */
}

.contact-group-faq {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 45%;
  /* Adjust as needed */
}

.icon {
  /* Styles for BOTH icons */
  margin-right: 20px;
  width: 100px;
  /* Consistent width */
  height: 100px;
  /* Consistent height */
  /* REMOVE border-radius */
  overflow: hidden;
}

.icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  /* Or contain if you prefer */
}

/* Styles specifically for the building icon */
.contact-group-faq:nth-child(2) .icon {
  /* Target the second contact group */
  width: 70px;
  /* Smaller width for building icon */
  height: 70px;
  /* Smaller height for building icon */
}

/* OR, if you prefer to add a class to the building icon's div */
.building-icon {
  /* Add this class to the div in HTML */
  width: 60px;
  height: 60px;
}

@media (max-width: 768px) {
  .contact-info-faq .container {
    flex-direction: column;
    /* Stack vertically */
    align-items: center;
    /* Center horizontally */
  }

  .contact-group-faq {
    width: 90%;
    /* Take up more width on mobile */
    margin-bottom: 20px;
    /* Add space between stacked items */
    text-align: center;
    /* Center text */
  }

  .icon {
    margin-right: 0;
    /* Remove right margin */
    margin-bottom: 10px;
    /* Add bottom margin for spacing */
  }
}

/* ABOUT PAGE  */

.about-us-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 0px;
  padding-right: 40px;
}

.about-page.about-us {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 0px;
  margin-bottom: 100px;
}

.about-page.about-us .top-header-text {
  padding-left: 5px;
}

.about-page.about-us .button-container .btn {
  flex: 1;
  max-width: 200px;
  margin-left: 10px;
}

@media (max-width: 992px) {
  .about-page.about-us {
    gap: 30px;
  }

  .about-us-image img {
    padding-right: 0px;
  }
}

@media (max-width: 768px) {
  .about-us-image img {
    padding: 0px 30px 0px 30px;
  }
}

/* Contact Page  */

.contact-container {
  margin-bottom: 100px;
}

.inquiry-form {
  background-color: var(--light-text);
  padding: 40px;
  box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.1), 0px 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 50%;
  margin-top: 20px;
  text-align: left;
}

.inquiry-form h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: calc(100% - 22px);
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1rem;
}

.inquiry-form textarea {
  height: 150px;
}

.inquiry-form button {
  background-color: var(--light-text);
  border: solid 2px var(--tertiary-red);
  color: var(--tertiary-red);
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.inquiry-form button:hover {
  background-color: var(--tertiary-red);
  color: var(--light-text);
}

.form-image {
  flex: 1 1 50%;
  margin: 50px;
}

.form-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .inquiry-form {
    padding: 20px;
  }

  .inquiry-form h3 {
    font-size: 1.4rem;
  }

  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea,
  .inquiry-form button {
    font-size: 0.9rem;
  }

  .inquiry-form,
  .form-image {
    flex: 1 1 100%;
    margin: 20px 0;
  }
}

/* Learn More */

/* LEARN MORE FEATURES SECTION  */

.learn-more-title {
  text-align: center;
  /* Centers all text inside */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 95px 0px 0px 0px;
}

.learn-more-title h3 {
  color: var(--dark-text);
  font-family: var(--title-font);
  font-size: 36px;
  font-weight: 700;
  margin: 0px 0px 15px;
}

.learn-more-title h2 {
  color: var(--dark-text);
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  margin: 0px 0px 15px;
}

.learn-more-title p {
  color: var(--dark-text);
  font-family: var(--subtitle-font);
  font-size: 16px;
  font-weight: 300;
  margin: 0px;
}

.section-divider {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  /* Adjust spacing between lines */
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: 3px;
  /* Adjust length of first line */
  height: 3px;
  border-radius: 50px;
  background-color: var(--tertiary-red);
}

.section-divider::after {
  background-color: var(--tertiary-red);
  width: 20px;
  /* Adjust length of second line */
  border-radius: 50px;
}

/* Add extra lines */
.section-divider span {
  width: 3px;
  /* Adjust length of extra lines */
  height: 3px;
  border-radius: 50px;
  background-color: var(--tertiary-red);
}

.learn-more-section {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 25px 0px;
}

.learn-more-section.column {
  padding: 30px 0px 10px 10px;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: var(--light-text);
  border-radius: 5px 5px 5px 5px;
}

.learn-more-section h3 {
  padding: 0px 0px 0px 0px;
  color: var(--dark-text);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0px;
}

.learn-more-section p {
  color: var(--dark-text);
  font-family: var(--subtitle-font);
  font-size: 16px;
  font-weight: 500;
}

.learn-more-section .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0px 30px 0px 0px;
  border-radius: 50%;
  background-color: var(--light-text);
  transition: background-color 0.2s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Default icon style */
.learn-more-section .icon i {
  font-size: 40px;
  color: var(--dark-text);
  transition: color 0.2s ease-in-out;
  /* Smooth transition */
}

/* Hover effect */
.learn-more-section .column:hover .icon {
  background-color: var(--header-decoration);
}

.learn-more-section .column:hover .icon i {
  color: var(--light-text);
}

.learn-more-section .column:hover h3 {
  color: var(--header-decoration);
}

.learn-more-row {
  padding-top: 55px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.service-basic {
  padding: 0px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  /* Add padding for spacing */
}

.service-basic .button-container,
.service-starter .button-container {
  width: 200px; /* Adjust width as needed */
  margin: 20px auto; /* Center it */
  padding-top: 30px;
  text-align: center;
}

.service-starter {
  background-color: var(--light-text);
  padding: 0px 20px 50px 20px;
  /* Add padding for spacing */
}

.service-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 0px 0px 0px;
}

.service-section h3 {
  padding: 0px 0px 0px 0px;
  color: var(--dark-text);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0px;
}

.service-row {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-column {
  flex: 0 0 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
  margin-bottom: 20px;
}

.service-starter .service-row {
  gap: 40px;
}

.service-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
}

.service-item {
  background-color: var(--light-text);
  padding: 50px 10px 180px 10px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  flex-grow: 0;
  height: 200px;
  width: 350px;
}

.service-section .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  min-height: 80px;
  margin: 0px 0px 20px 0px;
  border-radius: 50%;
  background-color: var(--light-text);
  transition: background-color 0.2s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Default icon style */
.service-section .icon i {
  font-size: 40px;
  color: var(--dark-text);
  transition: color 0.2s ease-in-out;
  /* Smooth transition */
}

/* Hover effect */
.service-item:hover .icon {
  background-color: var(--header-decoration);
}

.service-item:hover .icon i {
  color: var(--light-text);
}

.service-item:hover h3 {
  color: var(--header-decoration);
}

.service-column .button-container .btn {
  flex: 0;
  text-align: center;
}

.learn-more-title .button-container {
  width: auto;
}

.service-column .book-tour {
  color: var(--dark-text);
  border: 2px solid var(--header-decoration);
  width: auto;
  white-space: nowrap;
}

.service-column .book-tour:hover {
  color: var(--light-text);
  background-color: var(--header-decoration);
  /* Change to hover color */
}

@media (max-width: 1350px) {
  .service-item {
    background-color: var(--light-text);
    padding: 30px 20px 200px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    height: 200px;
    width: 250px;
  }
}

@media (max-width: 991px) {
  .service-column .book-tour {
    color: var(--dark-text);
    border: 2px solid var(--tertiary-red);
    width: auto;
    white-space: nowrap;
  }

  .service-column .button-container {
    padding: 0 80px;
  }

  .service-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .service-column .button-container {
    padding: 0px;
  }

  .service-column {
    margin: 0px;
  }
}

@media (max-width: 572px) {
  .learn-more-row,
  .learn-more-title {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* LEARN MORE PACKAGE SECTION  */

.package-container {
  background-color: var(--section-background-light);
  padding: 0px 20px 50px 20px;
  margin-bottom: 100px;
}

.package-comparison .container {
  margin: 0 auto;
  text-align: center;
  /* Center the content */
}

.package-comparison h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #333;
  /* Darker heading color */
}

.package-comparison p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #666;
  /* Slightly lighter text color */
}

.package-grid {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Responsive grid */
  gap: 20px;
}

.package {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  transition: transform 0.2s ease-in-out;
  /* Smooth hover effect */
}

.package:hover {
  transform: translateY(-5px);
  /* Move up slightly on hover */
}

.package h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #333;
}

.price {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--tertiary-red);
  /* Example price color */
}

.period {
  font-size: 0.8em;
  color: #666;
}

.package ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.package li {
  font-size: 1em;
  margin-bottom: 10px;
  color: #555;
  text-align: left;
  /* Align list items to the left */
}

.contact-button {
  text-decoration: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  background-color: var(--light-text);
  color: var(--tertiary-red);
  cursor: pointer;
  border: 2px solid var(--tertiary-red);
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: 90%;
}

.contact-button:hover {
  background-color: var(--tertiary-red);
  color: var(--light-text);
}

/* Responsive adjustments (example) */
@media (max-width: 768px) {
  .package-comparison h2 {
    font-size: 2em;
  }

  .package-comparison p {
    font-size: 1.1em;
  }

  .package h3 {
    font-size: 1.5em;
  }

  .price {
    font-size: 1.3em;
  }
}

/* LEARN MORE OFFICE SUITE STYLING */

.office-suite {
  /* Adjust container width as needed */
  margin: 0 auto;
  background-color: var(--section-background);
  padding: 0px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.office-suite .workspace-budget {
  background-color: var(--light-text);
}

.office-suite h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
  /* Darker heading color */
  text-align: center;
  /* Center the headings */
}

.office-suite .image-container {
  padding-top: 50px;
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.office-desc {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.office-desc .learn-more-title {
  padding-top: 0px;
}

.office-desc .learn-more-title h2 {
  border-left: 5px solid var(--highlight-color);
  padding-left: 15px;
}

.office-desc-text .learn-more-title {
  text-align: left;
  align-items: flex-start;
  padding-top: 47px;
  border-left: none;
}

.office-suite p {
  font-size: 1.1em;
  line-height: 1.6;
  /* Improve readability */
  margin-bottom: 20px;
  color: #555;
  /* Slightly lighter text color */
}

.image-container {
  margin-bottom: 30px;
  overflow: hidden;
  /* Ensure image doesn't overflow */
  border-radius: 8px;
  /* Rounded corners for the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Add a subtle shadow */
}

.image-container img {
  width: 100%;
  display: block;
  /* Prevent image from creating extra space */
  transition: transform 0.3s ease;
  /* Smooth hover effect */
}

.image-container:hover img {
  transform: scale(1.05);
  /* Slightly zoom in on hover */
}

@media (max-width: 395px) {
  .office-desc {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }

  .office-desc-text .learn-more-title {
    text-align: center;
    align-items: center;
    padding-top: 30px;
  }
}

.features {
  list-style: none;
  /* Remove default bullet points */
  padding: 0;
  margin-bottom: 30px;
}

.features li {
  font-size: 1em;
  margin-bottom: 15px;
  color: #555;
  position: relative;
  /* For positioning the icon */
  padding-left: 30px;
  /* Add left padding for the icon */
}

.features li::before {
  content: "\2713";
  /* Checkmark icon */
  position: absolute;
  left: 0;
  top: 2px;
  /* Adjust vertical alignment as needed */
  color: var(--tertiary-red);
  /* Example icon color */
  font-weight: bold;
}

/* Responsive adjustments (example) */
@media (max-width: 768px) {
  .office-suite h2 {
    font-size: 1.7em;
  }

  .office-suite p {
    font-size: 1em;
  }

  .features li {
    font-size: 0.95em;
  }
}

/* LEARN MORE WORKPLACE BUDGET SECTION   */
.workspace-budget {
  padding: 40px 0;
  background-color: var(--light-text);
  /* Light gray background */
}

.workspace-budget .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.workspace-budget h2 {
  font-size: 2em;
  color: #333;
  /* Dark gray heading */
  text-align: center;
  margin-bottom: 20px;
}

.workspace-budget p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  /* Slightly lighter gray text */
  margin-bottom: 20px;
}

.separator {
  width: 50px;
  /* Adjust width as needed */
  height: 2px;
  background-color: var(--tertiary-red);
  /* Example separator color */
  margin: 20px auto;
  /* Center the separator */
}

.image-container {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.workspace-budget ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.workspace-budget li {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  /* Space for the icon */
}

.workspace-budget li::before {
  content: "\2713";
  /* Checkmark icon */
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--tertiary-red);
  /* Example icon color */
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workspace-budget h2 {
    font-size: 1.7em;
  }

  .workspace-budget p {
    font-size: 1em;
  }

  .workspace-budget li {
    font-size: 0.95em;
  }
}

/* HOME/INDEX style */

.highlight {
  color: var(--tertiary-red);
  font-weight: bold;
}

.about-us {
  background-color: var(--section-background-light);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 100px 0px;
}

.index-about-us-image {
  padding-right: 40px;
}

.index-about-us-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  margin: 0px;
}

.index-about-us-image img {
  border: 8px solid rgba(0, 0, 0, 0.5);
}

.about-us .learn-more-title {
  padding: 0;
  align-items: flex-start;
  text-align: left;
}

.about-us .top-header-text {
  padding-left: 21px;
  font-size: 17px;
  font-weight: normal;
  margin: 0px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 0px;
}

.about-us .top-header-text::before {
  width: 30px;
}

.about-us .button-container {
  justify-content: flex-start;
}

.about-us .button-container .btn {
  flex: 1;
  max-width: 200px;
  margin-left: 25px;
}

.about-us .book-tour {
  color: var(--dark-text);
  border: 2px solid var(--header-decoration);
}

.about-us .book-tour:hover {
  color: var(--light-text);
  background-color: var(--header-decoration);
  /* Change to hover color */
}

.our-facility {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  /* Allows wrapping if needed */
  justify-content: center;
  /* Adjusts spacing */
  gap: 20px;
  /* Adds spacing between items */
}

.facility-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0px;
  border-radius: 50%;
  background-color: var(--light-text);
  transition: background-color 0.2s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Default icon style */
.facility-item .icon i {
  font-size: 40px;
  color: var(--dark-text);
  transition: color 0.2s ease-in-out;
  /* Smooth transition */
}

.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

/* Hover effect */
.facility-item:hover .icon {
  background-color: var(--header-decoration);
}

.facility-item:hover .icon i {
  color: var(--light-text);
}

.facility-item h6 {
  font-family: var(--title-font);
  padding-top: 10px;
  text-align: center;
}

.facility-item:hover h6 {
  color: var(--header-decoration);
}

.benefits-column .icon {
  margin: 0px;
}

.benefits-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefits-column .section-content {
  padding-top: 20px;
}

.benefits-row {
  padding-top: 55px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.package-row {
  padding-top: 55px;
  display: flex;
  justify-content: center;
}

.package-column .icon {
  margin: 0px;
}

.package-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.package-column .section-content {
  padding-top: 20px;
}

.package-row .button-container {
  justify-content: flex-start;
}

.package-row .button-container .btn {
  flex: 1;
  max-width: 200px;
}

.package-row .book-tour {
  color: var(--dark-text);
  border: 2px solid var(--header-decoration);
}

.package-row .book-tour:hover {
  color: var(--light-text);
  background-color: var(--header-decoration);
  /* Change to hover color */
}

.package-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.package-column:hover .icon {
  background-color: var(--header-decoration);
}

.package-column:hover .icon i {
  color: var(--light-text);
}

.package-column:hover h3 {
  color: var(--header-decoration);
}

.contact-form {
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0px;
}

.inquiry-form .learn-more-title {
  margin: 0;
  padding: 0 0 20px 0;
}

.inquiry-form .learn-more-title h6 {
  color: gray;
  font-size: 0.8rem;
}

.stats {
  background-image: url("../images/6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  max-width: 960px;
  margin-top: 100px;
}

.stats .container {
  background-color: rgba(3, 8, 36, 0.37);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.stats .container.row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.stats .learn-more-title {
  padding-top: 10px;
}

.stats .learn-more-title h4,
.stats .learn-more-title p {
  color: var(--main-white);
  margin-bottom: 2px;
}

.stats .learn-more-title h4 {
  font-weight: bold;
}

.stats .learn-more-title p {
  font-size: 13px;
}

.stats-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stats-icon .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Default icon style */
.stats-icon .icon i {
  font-size: 40px;
  color: var(--light-text);
  transition: color 0.2s ease-in-out;
  /* Smooth transition */
}

/* Change the color of the carousel control buttons */

.testimonial-container {
  margin-bottom: 100px;
  margin-top: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--dark-text);
  /* Background of the button */
  border-radius: 50%;
  padding: 10px;
  filter: invert(1);
  /* Inverts black arrows to white */
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1;
  /* Ensures visibility */
}

.carousel-indicators li {
  background-color: var(--light-text);
  /* Change to your preferred color */
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators .active {
  background-color: var(--main-theme);
  /* Highlight the active one */
}

.latest-news {
  background-color: var(--section-background-light);
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 100px 0px;
  margin-top: 50px;
}

.latest-news .learn-more-title {
  padding: 0px;
}

.image-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Centers the image */
}

.latest-news {
  margin-bottom: 100px;
}

/* Responsive adjustments */

@media (max-width: 992px) {
  .button-container .btn {
    flex: auto;
  }

  .news-container {
    gap: 20px;
  }

  .inquiry-form {
    margin-top: 0px;
  }

  .package-column {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .package-row .button-container {
    justify-content: center;
  }

  .package-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stats {
    height: 700px;
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .image-content img {
    max-width: 80%;
  }

  .package-row {
    gap: 30px;
  }

  .stats .container {
    padding: 30px 0px 30px 0px;
  }

  .index-about-us-image,
  .about-us-text {
    padding: 0px 30px;
  }

  .about-us .top-header-text {
    color: var(--dark-text);
    padding-left: 12px;
    justify-content: flex-start;
  }

  .benefits-column .section-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Form */

.recaptcha {
  margin-bottom: 25px;
}

.section-container {
  padding: 20px;
  margin-bottom: 20px;
}

.section-container.with-background {
  background-color: #f7f9fb;
}

.parent-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.section-content a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.section-content a:hover {
  color: #bb1c2c;
  transform: scale(1.05); 
}