/**
* Template Name: Mindhome
*/

/* Fonts */
/* :root {
  --default-font: "SF Pro Display", sans-serif",;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "SF Pro Display";
} */
:root {
  --default-font: "SF Pro Display", sans-serif;
  --heading-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #2f3138;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0e1b4d;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f82249;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f82249;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #000820;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #001553;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;

  padding-left: 5%;
  padding-right: 5%;

}

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

.header .logo img {
  max-height: 42px;
  margin-right: 8px;
}

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--default-color);
  background: var(--surface-color);
  font-size: 14px;
  padding: 8px 25px;
  /* margin: 0 0 0 30px; */
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(1, 8, 33, 0.82);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1024px) {
  .header .container-xl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navmenu {
    padding: 0;
    display: flex;
    justify-content: center;
    /* Centers the navigation menu */
    flex-grow: 1;
    /* Allows the navmenu to expand */
  }

  /* Ensure the language dropdown and sign-in button stay on the right */
  .header .right-elements {
    display: flex;
    align-items: center;
    margin-left: auto;
    /* Pushes to the right */
  }

  /* Ensure logo stays on the left */
  .header .logo {
    margin-right: auto;
  }

  /* Ensure Sign in and Language dropdown have space on the right */
  .header .cta-btn {
    margin-left: 20px;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 18px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    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: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

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

  .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 {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    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;
  }
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  
  /* Ensure the language dropdown and sign-in button stay on the right */
  .header .right-elements {
    display: flex;
    align-items: center;
    margin-left: 0px;
    /* Pushes to the right */
  }

  .header .cta-btn {
    margin-left: 10px;
    margin-right: 10px;
  }

  .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;
    margin-right: auto !important ;
  }

  .navmenu.mobile-nav-active ul {
    display: block;
    /* Display navigation when mobile menu is active */
  }

  .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-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu ul li.language-dropdown,
  .navmenu ul li.cta-btn {
    display: block;
    margin: 10px 0;
    /* Adds spacing for mobile items */
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 700;
    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);
    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 {
    display: block;
    cursor: pointer;
    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;
  }
}

/* centering the navmenu start */
/* Add to .container-xl's class to ensure centering */
.d-flex.align-items-center {
  justify-content: center;
}

.logo .homeIcon {
  width: 42px;
  /* Adjust the size */
  height: auto;
  fill: #fff;
  /* This works if you're using an inline SVG or <img> SVG */
  margin-right: 8px;
  /* Optional: add space if there’s text next to the icon */
}

/* Ensure the navmenu stays in the center */
.navmenu {
  margin-left: auto;
  margin-right: -10%;
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  cursor: pointer;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
}

.flag-container {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}

.flag {
  width: 20px;
  height: 20px;
  background-color: white;
  /* Placeholder for flag */
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Force dropdown width with important */
.language-dropdown .dropdown-menu {
  width: 70px !important;
  /* Apply important */
  min-width: 70px !important;
  /* Prevent Bootstrap min-width from overriding */
  max-width: 70px !important;
  /* Prevent Bootstrap max-width from overriding */
  padding: 7px;
  box-sizing: border-box;
  /* Ensure padding is inside width */
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 100%;
  right: 3% !important;
  background-color: #fff;
  border: 1px solid #94A3B8;
  border-radius: 8px;
}

/* Display the dropdown when hovered */
.language-dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.language-dropdown .dropdown-toggle::after {
  content: none;
  /* Removes the default dropdown icon */
}

/* List item styling */
.dropdown-menu li {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: black;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  /* Ensure each list item takes full width */
}

/* Anchor styling */
.dropdown-menu li a {
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  width: 100%;
  /* Ensure anchor takes full width */
}

/* Prevent hover effect from altering width */
.dropdown-menu li a:hover {
  background-color: #e7e7e7;
}

.flag-container img {
  width: 20px;
  height: auto;
}

/* centering the navmenu end */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;

  padding-left: 5%;
  padding-right: 5%;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .logo img {
  margin: 0 auto;
  width: 72px;
  height: 80.23px;
}

.footer .social-links {
  font-size: 20px;

}

.footer .social-links .follow-text {
  margin-right: 10px;
}

.footer .social-links a {
  font-size: 18px;
  font-family: var(--default-font);
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  margin-right: 4px;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}

.footer-links {
  margin-top: 15px;
  text-align: center;
}

.footer-link {
  color: var(--default-color);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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 {
  --background-color: #000000;
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);
  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: 80px 5%;
  scroll-margin-top: 92px;
  overflow: clip;
  overflow: hidden;

}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/* Global Section Titles */
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

#about {
  /* line-height: normal; */
}

/* Statistics Div Styling */
.statisticsDiv {
  flex-direction: column;
  align-items: flex-start;
  display: inline-flex;
}

/* Gradient for numbers */
.gradient-text {
  background: linear-gradient(241deg, #c10f1e 0%, #703131 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Residential Units */
.residential_units_text {
  width: 100%;
  color: #020617;
  font-size: 36px;
  font-family: var(--default-font);
  font-weight: 700;
  word-wrap: break-word;
}

.residential_units_value,
.contractor_value,
.manufacturer_value {
  color: #5c080f;
}

.plus {
  color: linear-gradient(241deg, #c10f1e 0%, #ff0000 100%);

}

.residential_units_text,
.contractor_text,
.manufacturer_text {
  color: #020617;

}

.residential_units_value {
  align-self: stretch;
  font-size: 96px;
  font-family: var(--default-font);
  font-weight: 700;
  word-wrap: break-word;
}

/* Contractor */
.contractor_text {
  width: 100%;
  font-size: 36px;
  font-family: var(--default-font);
  font-weight: 700;
  word-wrap: break-word;
}

.contractor_value {
  align-self: stretch;
  font-size: 64px;
  font-family: var(--default-font);
  font-weight: 700;
  word-wrap: break-word;
}

/* Manufacturer */
.manufacturer_text {
  width: 100%;
  font-size: 36px;
  font-family: var(--default-font);
  font-weight: 700;
  word-wrap: break-word;
}

.manufacturer_value {
  align-self: stretch;
  font-size: 64px;
  font-family: var(--default-font);
  font-weight: 700;
  word-wrap: break-word;
}

/* About Us Styling */
.about_us {
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 48px;
  color: #1e1e1e;
}

.about_us_text {
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 24px;
  color: #000000;
  line-height: normal;
}


.about_us,
.about_us_text,
.feature-title,
.feature-text {
  text-shadow: .3px .3px .3px rgba(0, 0, 0, 0.5);
}


/* Adjust the image container */
.img-wrapper {
  width: 556.5px;
  /* As per the Figma design */
  height: auto;
  /* Matches the aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-top: 0;
  /* Remove gap if there is excess space */
  /* background-color: #eed2d2; */
}


.img-wrapper img {
  width: 100%;
  /* Ensure the image takes full width */
  height: auto;
  /* Maintain aspect ratio to avoid stretching */
  object-fit: cover;
  /* Ensure proper image fit without distortion */
  position: relative;
}

/* General Styling */
.about-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.about-text-wrapper {
  padding-left: 10%;
  /* Ensures space between image and text */
  gap: 24px;
}


/* Laptop and Large Laptop (1024px and 1440px) */
@media (min-width: 1024px) {
  .about-text-wrapper {
    padding-left: 60px;
    /* Adds space between text and image */
  }
}

/* Large Laptop (1440px) */
@media (min-width: 1440px) {
  .about-text-wrapper {}

}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .about_us {
    font-size: 28px;
  }

  .about_us_text {
    font-size: 15px;
  }

  .img-wrapper {
    width: 100%;
    height: auto;
    /* Keep the aspect ratio on mobile */
  }

  .img-wrapper img {
    position: relative;
    width: 100%;
    left: 0;
  }

  .gradient-text {
    font-size: 60px;
  }
}

@media (max-width: 576px) {
  .about_us {
    font-size: 28px;
  }

  .about_us_text {
    font-size: 16px;
  }

  .img-wrapper {
    width: 100%;
    height: auto;
  }

  .img-wrapper img {
    width: 100%;
    left: 0;
    position: relative;
  }
}

/* Tablet (768px) */
/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .about_us {
    font-size: 34px;
  }

  .about_us_text {
    font-size: 18px;
  }

  .img-wrapper {
    width: 100%;
    /* Ensure full width on tablets */
    height: auto;
    /* Maintain aspect ratio */
  }

  .img-wrapper img {
    position: relative;
    width: 100%;
    /* Ensure the image scales to fit the container */
    left: 0;
  }

}

/* Tablet (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .about-text-wrapper {
    padding-left: 30px;
    /* Reduced padding for tablets */
  }

  .img-wrapper {
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .img-wrapper {
    width: 100%;
  }

  .img-wrapper img {
    left: 10%;
  }
}

@media (min-width: 1440px) and (max-width: 2560) {
  .about-text-wrapper {}

  .img-wrapper {
    width: 100%;
  }

  .img-wrapper img {
    left: 10%;
  }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .about-text-wrapper {
    padding-left: 0px;
    /* Reduced padding for mobile */

  }

  .about-img-2 {
    left: 0;
    /* No left shift on smaller devices */
    width: 100%;
    /* Image takes full width */
    height: auto;
  }
}

@media (max-width: 576px) {
  .about-img-2 {
    width: 100%;
    /* Full width on small screens */
    height: auto;
  }
}


/* Image Styling */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.rounded {
  border-radius: 16px;
}




.about-img-2 {
  width: auto;
  /* Width of the image as per the Figma design */
  height: auto;
  /* Height of the image */
  position: relative;
  top: 0;
}

.about-img,
.about-img-2 {
  border-radius: 16px;
}


/* Features Section Styling */
.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 34px;
  font-weight: bold;
}

.feature-text {
  color: #020617;
  font-size: 24px;
  font-family: var(--default-font);
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 0;
  line-height: normal;

}



/* Responsive Adjustments */
@media (max-width: 1024px) {

  .residential_units_value {
    font-size: 80px;
  }

  .contractor_value,
  .manufacturer_value,
  .plus {
    font-size: 50px;
    /* Reduce font size */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .residential_units_value {}

  .contractor_value,
  .manufacturer_value,
  .plus {
    font-size: 36px;
    /* Reduce font size */
  }

  .residential_units_text,
  .contractor_text,
  .manufacturer_text {
    font-size: 28px;
  }

  .image-container {
    height: auto;
  }

  .image-1,
  .image-2 {
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
  }
}

@media (max-width: 576px) {
  .col-md-6 {
    flex: 0 0 100%;
    /* Make the columns full width on small screens */
    max-width: 100%;
  }

  .residential_units_value,
  .contractor_value,
  .manufacturer_value,
  .plus {
    font-size: 30px;
  }

  .residential_units_text,
  .contractor_text,
  .manufacturer_text {
    font-size: 24px;
  }

  .about_us {
    font-size: 36px;
  }

  .about_us_text {
    font-size: 18px;
  }

  .about-img-2 {
    width: auto;
    /* Width of the image as per the Figma design */
    height: auto;
  }
}

/* First Image (Main) */
.image-1 {
  width: auto;
  height: auto;
  top: 0;
  border-radius: 16px;
}

/* Banner Container Styling */
#banner {
  background-image: url('./FemalehandholdingiPhoneFull.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 466px;
  color: #ffffff;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
}

.banner-text {
  width: 100%;
  justify-content: flex-end;
  /* Moves content to the right inside the banner */
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 1);
}

/* Main Heading and Logo Styling */
.main-text {
  font-size: 64px;
  font-family: "SF Pro Display", sans-serif;
  font-weight: 700;
  color: white;
}

.mindHomeLogo {
  width: auto;
  /* height: 40px; Adjust height of the logo */
}

/* Subtext Styling */
.sub-text {
  font-size: 24px;
  font-family: "SF Pro Display", sans-serif;
  font-weight: 700;
}

/* Store Button Styling */
.store-btn {
  width: 120px;
  height: 40px;
}

/* Responsive Adjustments */
@media (max-width: 1440px) {
  .main-text {
    font-size: 50px;
  }

  .sub-text {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .main-text {
    font-size: 48px;
  }

  .sub-text {
    font-size: 20px;
  }

  /* Center the content on smaller screens */
  .banner-text {
    justify-content: right;
    /* Centers content on smaller screens */
  }
}

@media (max-width: 768px) {
  .main-text {
    font-size: 34px;
  }

  .sub-text {
    font-size: 18px;
  }

  .banner-text {
    align-items: right;
    /* Center-aligns text on smaller screens */
  }

  .mindHomeLogo {
    height: 30px;
    /* Adjust logo size for mobile */
  }

}

@media (max-width: 375px) {
  .banner-text{
    width: auto;
  }
}
@media (max-width: 425px) {
  .hero p #span-1 {
    padding-left: 5%;
    padding-right: 5%;
  }
  
  
  .hero:before {
    content: "";
    background: linear-gradient(180deg, #ff0015 0%, #5C080F 100%);
  
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.7;
  }
  
  .cta-btn {
    padding: 4px 5px !important;
    font-size: 10px !important;

  }
  
  .homeIcon {
    width: 36px !important;
    height: 36px !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }

  .main-text {
    font-size: 28px;
  }

  .sub-text {
    font-size: 16px;
  }

  .mindHomeLogo {
    height: 30px;
    /* Adjust logo size for mobile */
  }
}

@media (max-width: 768px) {
  .feature-title {
    font-size: 28px;
  }

  .feature-text {
    font-size: 20px;
  }

  .residential_units_value {
    font-size: 48px;
  }

  .image-1 {
    width: auto;
    height: auto;
    top: 0;
    border-radius: 16px;
  }


}

@media (max-width: 576px) {
  .feature-title {
    font-size: 24px;
  }

  .feature-text {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Hero Section (Responsive)
/*--------------------------------------------------------------
# Hero Section (Updated for Figma height)
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 1000px;
  /* Default height for large screens */
  max-height: 1000px;
  position: relative;
  padding: 100px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(180deg, #ff0015 0%, #5C080F 100%);

}

.hero .heroImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: contrast(1.5); /* Increase contrast */
}


.hero:before {
  content: "";
  background: linear-gradient(180deg, #ff0015 0%, #5C080F 100%);

  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.7;
}



.hero h2 {
  font-size: 48px;
  /* Adjust as needed */
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.hero p #span-1 {
  font-weight: 500;
  font-family: var(--default-font);
  font-size: 20px;
  color: white;
}

.hero p #span-2 {
  font-weight: 700;
  font-family: var(--default-font);
  font-size: 24px;
  color: white;
}

/* Adjusting container size and positioning */
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
  position: relative;
  max-width: 80%;
  /* Contain content width */
  top: 120px;
}

.hero .container h2 {
  font-family: var(--default-font);
}

.hero #span-1 {
  font-size: 20px;
  font-family: var(--default-font);
  font-weight: 500;
  word-wrap: break-word;
}

.hero #span-2 {
  color: white;
  font-size: 24px;
  font-family: var(--default-font);
  font-weight: 700;
  word-wrap: break-word;
}

/* Image of female hand positioning */
#femaleHand {
  width: 100%;
  max-width: 709px;
  /* Set max-width as per Figma dimensions */
  height: auto;
  margin-top: 20px;
  margin-left: 20%;
  /* Move image to the right */
  z-index: 3;
}

@media (max-width: 1440px) {
  .hero {
    height: 1000px;
    /* Reduce height for tablets */
    padding: 60px 0 0 0;
  }

  .hero h2 {
    font-size: 6vw;
  }

  .hero p {
    font-size: 4vw;
  }

  .hero .container {
    padding: 0 10px;
    /* top: 80px; Adjust top positioning */
  }

  #femaleHand {
    max-width: 90%;
    margin-left: 30%;
    /* Keep image adjusted for smaller screens */
    height: 1000px;
  }
}

/* Responsive Adjustments for tablets */
@media (max-width: 768px) {
  .hero {
    height: 800px;
    /* Reduce height for tablets */
    padding: 60px 0 0 0;
  }

  .hero h2 {
    font-size: 6vw;
  }

  .hero p {
    font-size: 4vw;
  }

  .hero .container {
    padding: 0 10px;
    top: 80px;
    /* Adjust top positioning */
  }

  #femaleHand {
    max-width: 90%;
    margin-left: 30%;
    /* Keep image adjusted for smaller screens */
    height: auto;
  }

  .img-wrapper {
    width: 100%;
  }

  .img-wrapper img {
    left: 0px;
  }

}

/* Responsive Adjustments for mobile */
@media (max-width: 480px) {
  .hero {
    height: 500px;
    /* Further reduce height for mobile */
    padding: 40px 0 0 0;
  }

  .hero h2 {
    font-size: 8vw;
    /* Increase size for mobile */
  }

  .hero p {
    font-size: 5vw;
  }

  .hero .container {
    padding: 0 10px;
    top: 50px;
    /* Further adjust top positioning */
  }

  #femaleHand {
    max-width: 80%;
    margin-left: 30%;
    /* Keep image adjusted for very small screens */
    height: auto;
  }

  .emptyImg {
    display: none;
  }
}

.hero h2 {
  font-size: 3vw;
  /* Default size for large screens */
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  z-index: 3;
}

.hero p {
  font-size: 1.8vw;
  margin-bottom: 20px;
  color: #fff;
  z-index: 3;
}



/* Large Laptop (1440px and above) */
@media (min-width: 1440px) {
  #mindhome-top-svg {
    width: 548px;
    /* Larger width on large laptops */
    height: 73px;
  }

  .hero p #span-1 {
    font-size: 22px;
    /* Slightly larger font for the description */
  }

  .hero p #span-2 {
    font-size: 28px;
    /* Increase the font size for the highlighted part */
  }

}

/* Laptops (1024px to 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  #mindhome-top-svg {
    width: 528.97px;
    height: 73px;
  }

  .hero p #span-1 {
    font-size: 20px;
  }

  .hero p #span-2 {
    font-size: 24px;
  }

}

/* Laptops (1024px to 1440px) */
@media (min-width: 1440px) and (max-width: 2560px) {
  #mindhome-top-svg {
    width: 528.97px;
    height: 73px;
  }

  .hero p #span-1 {
    font-size: 20px;
  }

  .hero p #span-2 {
    font-size: 24px;
  }

}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  #mindhome-top-svg {
    width: 480px;
    height: auto;
    /* Auto height to maintain aspect ratio */
  }

  .hero p #span-1 {
    font-size: 18px;
  }

  .hero p #span-2 {
    font-size: 22px;
  }

}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  #mindhome-top-svg {
    width: 360px;
    /* Reduce size for mobile screens */
    height: auto;
  }

  .hero p #span-1 {
    font-size: 16px;
    /* Reduce font size on mobile */
  }

  .hero p #span-2 {
    font-size: 20px;
  }

}

/* Small Mobile (up to 576px) */
@media (max-width: 576px) {
  #mindhome-top-svg {
    width: 300px;
    height: auto;
  }

  .hero p #span-1 {
    font-size: 14px;
    /* Smaller font for small mobile */
  }

  .hero p #span-2 {
    font-size: 18px;
  }

}

@media (min-width: 425px) and (max-width: 767px) {
  .emptyImg {
    display: none;
  }
}


/* Image Container Styling */
.image-container {
  background-color: #EED2D2;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Footer-Section-Banner Section
--------------------------------------------------------------*/
/* Footer Banner Section */
.footer-section-banner {
  background-image: url('./Female_hand_holding_iPhone_footerBanner.png');
  /* Replace with actual image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 664px;
  color: white;
  display: flex;
  align-items: center;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 1);
  position: relative;
  overflow: hidden;
}

/* Text and Logo Styling */
.business-text {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  font-family: var(--default-font);
}

.mindHomeLogo-2 {
  vertical-align: middle;
  margin-left: 10px;
  width: 200px;
  /* Adjust logo size */
}

/* Store buttons styling */
.store-buttons {
  gap: 24px;
  margin-top: 20px;
}

.store-btn {
  width: 150px;
  height: auto;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .footer-section-banner {
    height: 500px;
  }

  .business-text {
    font-size: 2.5rem;
  }


}

@media (max-width: 768px) {
  .business-text {
    font-size: 40px;
  }

  .store-btn {
    width: 120px;
  }



  .footer-section-banner {
    height: 450px;
  }
  
  /* Content Section Styling for Policy and Service Agreement Pages */
  .content-section {
    margin-bottom: 40px;
  }
  
  .content-section h2 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }
  
  .content-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
  }
  
  .content-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Responsive adjustments for policy and service agreement pages */
  @media (max-width: 768px) {
    .content-section h2 {
      font-size: 24px;
    }
    
    .content-section p,
    .content-section ul li {
      font-size: 15px;
    }
  }

  /* Policy Item Styling for Footer */
  .policy-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
  }
  
  .policy-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .policy-title {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .language-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .lang-link {
    color: var(--default-color);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .lang-link:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
  }
  
  .separator {
    color: var(--default-color);
    opacity: 0.5;
    font-weight: bold;
  }
  
  /* Footer Component Styling */
  .footer-component {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding: 40px 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
  }

  .footer-section h3 {
    color: var(--heading-color);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: var(--default-color);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }

  .language-toggle {
    margin-top: 15px;
  }

  .language-toggle button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }

  .language-toggle button:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer-bottom p {
    margin: 0;
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    
    .footer-section {
      min-width: 100%;
    }
    
    .policy-item {
      margin-bottom: 15px;
    }
    
    .policy-title {
      font-size: 14px;
    }
    
    .lang-link {
      padding: 4px 8px;
      font-size: 13px;
    }
  }
}

@media (max-width: 576px) {
  .business-text {
    font-size: 32px;
  }

  .store-btn {
    width: 110px;
  }

  .footer-section-banner {
    height: 400px;
  }


}