html {
    
  font-family: Raleway;
  font-feature-settings: 'lnum';
  height: auto;
}

body {
  width: auto;

  margin: 0;
  /* border: 2px solid black */
}
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white; /* or any color that matches your design */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  box-sizing: border-box;
  margin-block-end: 1% ;
  color: #2A2436;
  padding: 2% 5% 2% 6%; /* Add some padding to ensure content doesn't touch the edges */
  transition: box-shadow 0.3s ease; /* Optional: for a smooth shadow effect when scrolling */
}

/* Optional: Add a shadow when scrolling for better visibility */
nav.scrolled {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo_text {
  font-size: 18px;
}

.menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 60px;
}
.menu-item {
  text-decoration: underline;
  text-decoration-color: #2A2436;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px; /* Adjust this value to increase or decrease the space */
}
.menuh2 {
  font-size: 14px;
  color: #2A2436;
  text-decoration: none;
}

.resources,
.nextedmenu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nextedmenu {
  background-color: #F7F6F7;
  border-radius: 35px;
  padding: 0 15px 0 15px;
  width: auto;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  position: relative;
}

@media screen and (min-width: 501px) {
  .logo_text {
    font-size: 24px;
    line-height: 1;
  }

  .resources {
    position: relative;
  }

  .menuh2 {
    font-size: 16px;
    display: flex;
    gap: 10px;
  }
}

@media screen and (max-width: 500px) {
  .menu-toggle {
    display: block;
  }

  .resources > h2,
  .resources > img[data-toggle="dropdown"] {
    display: none;
  }

  .menu {
    gap: 20px;
    position: relative;
  }
}


.resourcesdropdown {
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 2px solid #f5f5f5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.subresourcesdropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 5%;
}

.subdropdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
}

.resources {
  cursor: pointer;
  position: relative;
}

/* Base dropdown styles - hidden by default */
.resourcesdropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  width: 400px;
  padding: 20px;
}

.resourcesdropdown:not(.hidden) {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hidden {
  display: none;
}

.dropdownheading {
  font-size: 20px;
  font-weight: bold;
}

.dropdowntext {
  font-size: 14px;
}

/* Tablet: 501px to 1199px */
@media screen and (min-width: 501px) and (max-width: 1199px) {
  .menu-toggle {
    display: block;
  }

  .resources > h2,
  .resources > img[data-toggle="dropdown"],
  .nextedmenu,
  .menu-item.home-link {
    display: none;
  }

  .menu {
    gap: 20px;
    position: relative;
  }

  .resourcesdropdown {
    position: fixed;
    top: 70px;
    right: 20px;
    left: auto;
    transform: none;
    width: 300px;
    max-width: calc(100vw - 40px);
    padding: 20px;
  }

  .resourcesdropdown:not(.hidden) {
    transform: none;
    display: block;
  }

  .subresourcesdropdown {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0;
  }

  .subdropdown {
    width: 100%;
    padding: 12px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    text-decoration: none;
  }

  .subdropdown:last-child {
    border-bottom: none;
  }

  .dropdownimage {
    width: 40px;
    height: 40px;
  }

  .dropdowntext p {
    display: none;
  }

  .dropdowntext h2 {
    margin: 0;
    font-size: 16px;
  }
}

/* Mobile: max-width 500px */
@media screen and (max-width: 500px) {
  .menu-toggle {
    display: block;
  }

  .resources > h2,
  .resources > img[data-toggle="dropdown"],
  .menu-item.home-link {
    display: none;
  }

  .menu {
    gap: 20px;
    position: relative;
  }
  
  .nextedmenu {
    display: flex !important;
  }
  
  .resourcesdropdown {
    position: fixed;
    top: 70px;
    right: 20px;
    left: auto;
    transform: none;
    width: 250px;
    max-width: calc(100vw - 40px);
    padding: 20px;
  }
  
  .resourcesdropdown:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateX(95%) translateY(0);
    display: block;
  }
  
  .dropdowntext h2 {
    font-size: 14px;
  }
}

/* Desktop: 1200px and up */
@media screen and (min-width: 1200px) {
  .menu-toggle {
    display: none;
  }

  .resourcesdropdown {
    /* Desktop styles already defined in base styles */
  }

  .subresourcesdropdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .subdropdown {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .subdropdown:hover {
    background-color: #f5f5f5;
  }

  .dropdownimage {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .dropdowntext {
    flex: 1;
  }

  .dropdowntext h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }

  .dropdowntext p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #666;
  }
}
/*this is home_1*/
.home_1 {
  display: flex;
  justify-content: space-between;
  margin-left: 6%;
  overflow: auto;
}

.home_1_nest_1 {
  display: flex;
  font-size: 20px;
  flex-direction: column;
  margin-block-end: 10%;
    justify-content: flex-end;
    color: #2A2436;
    gap: 10px;
}

.slant {
  font-style: italic;
  font-weight: bold;
}


.description {
  font-size: 20px;
  width: 450px;
}

.homeinside {
  display: flex;
  gap: 50px;
}

.shopbut {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray-200);
  gap: 5px;
  border-radius: 8rem;
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 16px;
  height: 3rem;
  width: auto;
  color: white;
  padding: var(--padding-xl);
  background-color: #2A2436;
}

.knowbut {
  display: flex;
  align-items: center;
  color: #2A2436;
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 18px;
  border: none;
  height: 3rem;
  width: auto;
  border-radius: 8rem;
  padding: var(--padding-xl);
  background-color: #F7F6F7;
  gap: 5px;
}
@media screen and (min-width: 1000px) {
.knowbut, .shopbut{  
  height: 64px;
  width: 184px;
}
  
}
.home_1_nest_2 {
  width: 100vw;
  height: 100vh;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Apply animations */
.home_1_nest_1 h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.home_1_nest_1 h1 .slant {
  display: inline-block;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out 0.3s forwards;
  font-weight: 100;
}

.home_1_nest_1 .description {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.home_1_nest_1 .homeinside button {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
  cursor: pointer;
}

/* .home_1_nest_1 .homeinside button:hover {
  animation: pulse 0.5s ease-in-out;
} */

@media screen and (min-width: 570px) and (max-width: 700px) {
  .description {
    font-size: 16px;
    width: auto;
  }

  .home_1_nest_1 {
    display: flex;
    font-size: 1em;
    flex-direction: column;
    padding-top: 30%;
    color: #2A2436;
    width: auto;
  }
  .home_1_nest_2 {
    width: 100vw;
    height: 100vh;
    clip-path: inset(0 0 0 0%);
  }
}

@media screen and (min-width: 700px) and (max-width: 950px) {
  .description {
    font-size: 16px;
    width: 400px;
  }

  .home_1_nest_1 {
    display: flex;
    font-size: 1em;
    flex-direction: column;
    padding-top: 30%;
    color: #2A2436;
  }
  .home_1_nest_2 {
    width: 100vw;
    height: 100vh;
    clip-path: inset(0 0 0 0%);
  }
}

@media screen and (max-width: 570px) {
  .home_1 {
    display: flex;
    flex-direction: column-reverse;
    margin-left: 0;
  }

  .home_1_nest_2 {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
  }

  .description {
    font-size: 16px;
    width: auto;
    padding: 0 5%;
    line-height: 20px;
  }

  .home_1_nest_1 {
    display: flex;
    flex-direction: column;
    margin-top: -30%;
    color: #2A2436;
  }

  .home_1_nest_1 h1 {
    background-color: #FFFFFF;
    width: 73%;
    padding-top: 7%;
    padding-left: 8%;
    margin-left: -10px;
    font-size: 28px;
  }

  .homeinside {
    display: flex;
    justify-content: space-evenly;
    margin: 1% 5%;
    font-size: 14px;
  }

  .shopbut {
    font-size: 14px;
  }

  .knowbut {
    font-size: 14px;
  }
}

/* New media query for screens up to 1250px */
/* New media query for screens up to 1250px */
@media screen and (min-width: 1250px) {
  .home_1_nest_2 {
    width: 100vw;
    height: 100vh;
  }
}

/* Accessibility - Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .home_1_nest_1 h1,
  .home_1_nest_1 h1 .slant,
  .home_1_nest_1 .description,
  .home_1_nest_1 .homeinside button {
    animation: none;
    opacity: 1;
  }
}




 /* Styles for home_2 */
.home_2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 8% 6% 5% 6%;
  padding: 3%;
  padding-inline-start: 5%;
  background-color: #F7F6F7;
}

.home2h1 {
  font-size: clamp(20px, 3vw, 32px);
}

.thecaode {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.slider-indicator-container {
  width: clamp(60px, 10vw, 150px);
  height: 4px;
  position: relative;
  background-color: #ffffff;
}

.slider-indicator-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%; /* Set width to 50% */
  background-color: #000;
  transition: width 0.3s ease, left 0.3s ease;
}

.arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

/* Styles for home_3 */
.home_3 {
  display: flex;
  box-sizing: border-box;
  margin-left: 5%;
  margin-right: 5%;
  gap: 20px;
  overflow-x: scroll; /* Changed to 'scroll' */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px; /* Add space for scrollbar */

  /* Hide scrollbar for IE, Edge, and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.home_3::-webkit-scrollbar {
  display: none;
}

.home3in {
  flex: 0 0 auto;
  width: 280px; /* Fixed width for all screen sizes */
  margin-right: 20px; /* Gap between slides */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home3in img {
  width: 100%;
  height: auto;
  object-fit: cover;
  height: 256.46px;
}

.home3in h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

/* Responsive styles */
@media screen and (max-width: 499px) {
  .home_2 {
    flex-direction: column;
  }
}

@media screen and (min-width: 915px) {
  .home_3 {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .home3in {
    flex: 0 0 calc(20% - 16px);
    max-width: calc(20% - 16px);
  }
}



  /*this is for home4*/
  /* Common styles for all home4 variations */
/* Common styles */
.home4, .home4_tab, .home4_mob {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #2A2436;
}

.home4 h2, .home4_tab h2, .home4_mob h2 {
  margin: 0;
  font-weight: 200 !important;
}

.slan {
  font-style: italic;
  font-weight: 600;
}

/* Desktop styles */
.home4 {
  font-size: 26px;
}

/* Tablet styles */
.home4_tab h2 {
  font-size: 40px;
}

.home4_tab .slan {
  font-size: 38px;
}

/* Mobile styles */
/* Increase font size as screen width increases */
.home4_mob h2 {
  font-size: 24px;
}
@media screen and (min-width: 375px) {
  .home4_mob h2 {
    font-size: 32px;
  }
}

@media screen and (min-width: 400px) {
  .home4_mob h2 {
    font-size: 34px;
  }
}

/* @media screen and (min-width: 500px) {
  .home4_mob h1 {
    font-size: 44px;
  }
} */



.home4_mob .slan {
  font-size: 34px;
}

/* Media Queries */
@media screen and (max-width: 767px) {
  .home4 {
    display: none;
  }
  
  .home4_tab {
    display: none;
  }
  
  .home4_mob {
    display: flex;
    margin: 10% 0 10% 0%;
  }
  
  .home4_mob h2 {
    position: static;
  }
  
  .home4_mob .slan {
    display: inline;
  }
}

/* Other media queries remain unchanged */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .home4 {
    display: none;
  }
  
  .home4_tab {
    display: flex;
  }
  
  .home4_mob {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .home4 {
    display: flex;
    margin: 5%;
  }
  
  .home4_tab {
    display: none;
  }
  
  .home4_mob {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .home4 h2 {
    font-size: 56px;
  }
}

/*this is for home5*/
/* Base styles (for desktop - 1440px and above) */
.home5 {
  display: flex;
  height: 784px;
  flex-direction: column;
  box-sizing: border-box;
  /* gap: 50px; */
  justify-content: flex-start;
  position: relative;
  top: 50px;
  margin: 5%;
}
.home5 > .home5in2:nth-child(4) .bigd,
.home5 > .home5in2:nth-child(4) .bigc {
  /* Shared styles for both bigd and bigc in the second home5in2 */
  height: 90px;
}
.home5in1{
  height: 162px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}
 .home5in4 {
  height: 161px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}

.home5in1::after, .home5in4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ... (previous CSS remains the same) ... */

.home5in1::after {
  background-image: linear-gradient(
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.6) 70%,
    rgba(255, 255, 255, 0.5) 85%, 
    rgba(255, 255, 255, 0.4) 95%,
    rgba(255, 255, 255, 0.5) 100%,
    rgba(255, 255, 255, 0.4) 102%,
    rgba(255, 255, 255, 0.3) 104%,
    rgba(255, 255, 255, 0.2) 106%,
    rgba(255, 255, 255, 0.2) 108%,
    rgba(255, 255, 255, 0.2) 110%,
    rgba(255, 255, 255, 0.1) 115%,
    rgba(255, 255, 255, 0.3) 117%
  );
  top: -1px;
  bottom: -5px;
}
/* ... (rest of the CSS remains the same) ... */

.home5in4::after {
  /* top: 15px; */
  background-image: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.3) 70%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.5) 15%, 
    rgba(255, 255, 255, 0.4) 5%,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.4) -2%,
    rgba(255, 255, 255, 0.3) -4%,
    rgba(255, 255, 255, 0.2) -6%,
    rgba(255, 255, 255, 0.2) -8%,
    rgba(255, 255, 255, 0.2) -10%,
    rgba(255, 255, 255, 0.1) -15%,
    rgba(255, 255, 255, 0.3) -17%
  );
}

.home5in2 {
  height: 80px;
  display: flex;
  justify-content: space-between;
}

.home5in3 {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #2A2436;
  gap: 5px;
  margin-bottom: 1%;
}

.home5in3 h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}

.bigb {
  height: 160px;
  width: 120px;
  overflow: hidden;
  position: relative;
}

.biga {
  height: 160px;
  width: 160px;
  overflow: hidden;
  position: relative;
}

.bigc {
  height: 65px;
  width: 160px;
  overflow: hidden;
  position: relative;
}

.bigd {
  height: 65px;
  width: 120px;
  overflow: hidden;
  position: relative;
}

 .biga img, .bigc img, .bigd img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Laptop styles */
@media screen and (min-width: 751px) and (max-width: 1204px) {
  .home5_mob, .home5_tab {
    display: none;
  }

  .home5 {
    height: auto;
    margin: 5%;
    gap: 30px;
    top: 0;
  }

  .home5in1, .home5in4 {
    height: 120px;
    margin-bottom: 0;
  }

  .home5in2 {
    height: 60px;
  }

  .home5in3 h2 {
    font-size: 20px;
  }

  .bigb, .biga {
    height: 101px;
    width: 100px;
  }

  .bigc, .bigd {
    height: 60px;
    width: 100px;
  }
}

/* Tablet styles */
@media screen and (min-width: 451px) and (max-width: 750px) {
  .home5, .home5_mob {
    display: none;
  }

  .home5_tab {
    display: flex;
    height: 784px;
    flex-direction: column;
    box-sizing: border-box;
    gap: 40px;
    justify-content: center;
  }

  .home5_tab .home5in1,
  .home5_tab .home5in4,
  .home5_tab .home5in2 {
    overflow: hidden;
    justify-content: space-between;
    gap: 2vw;
    margin-bottom: 0;
    margin-top: 0;
  }

  .home5_tab .home5in1 img,
  .home5_tab .home5in4 img {
    width: 18vw;
    height: auto;
    object-fit: cover;
  }

  .home5_tab .home5in2 img {
    width: 45%;
    height: auto;
    object-fit: cover;
  }
  .biga img, .bigc img, .bigd img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .home5, .home5_tab {
    display: none;
  }

  .home5_mob {
    display: flex;
    flex-direction: column;
    margin: 15% 0;
    gap: 15px;
  }
  .bigb,.bigd { 
    width: 50px;
    height: auto;  
}
.bigc, .biga{
  height: auto;
}

.biga img, .bigc img, .bigd img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
  .home5_mob .home5in1,
  .home5_mob .home5in4 {
    height: 80px;
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    justify-content: flex-start;
    column-gap: 20px;
    margin:  0;
  }

  .home5_mob .home5in2 {
    height: 30px;
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    justify-content: flex-start;
    column-gap: 20px;
    margin: 10px 0;
  }

  .home5_mob .home5in1 img,
  .home5_mob .home5in4 img {
    width: 100%;
    height: 100%;
  }

  /* .home5_mob .home5in2 img {
    width: auto;
  } */

  .home5_mob .home5in3 {
    height: auto;
  }

  .home5_mob .home5in3 h2 {
    font-size: 14px;
    text-align: center;
  }

  .home5_mob .home5in4::after {
    background: linear-gradient(to top, rgba(255,255,255,1), transparent);
  }
}

/* For larger screens */
@media screen and (min-width: 1205px) {
  .home5_mob, .home5_tab {
    display: none;
  }
}
/*this is for home6*/
/*home6*/
/* Base styles (for all sizes down to 520px) */
.home6 {
  display: flex;
  flex-direction: column;
  /* margin-top: 15%; */
}

.home6in, .home6inf {
  display: flex;
  height: auto;
}

.bigimg, .bigimgf {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  background-color: #F7F6F7;
  padding: 20px;
  max-width: 700px;
  padding-top: 100px;
}

.small {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 20px;
  line-height: 1.5;
}
.small h3{
  font-size: 2em;
}
.bi, .bif {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}



/* Responsive adjustments for smaller screens, but still desktop-like */
@media screen and (max-width: 1024px) {
  .small h3 {
    font-size: calc(18px + 0.5vw);
  }

  .small p {
    font-size: calc(12px + 0.3vw);
  }
}

/* Mobile styles for screens smaller than 520px */
@media screen and (max-width: 519px) {
  .home6 {
    gap: 40px; /* Increased gap between sections */
  }

  .home6in, .home6inf {
    flex-direction: column;
    margin-bottom: 0; /* Removed margin as we're using gap */
  }

  .bigimg, .bigimgf, .small {
    width: fit-content;
  }

  .small {
    align-items: flex-start; /* Left-align content */
    text-align: left; /* Left-align text */
    padding: 20px;
    line-height: 1.5;
  }

  .small h3 {
    font-size: 24px;
    text-align: left; /* Ensure h1 is also left-aligned */
  }

  .small p {
    font-size: 14px;
  }

  .bigimg, .bigimgf {
    height: auto;
    padding: 10px;
  }

  .bi, .bif {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* Ensure images are responsive */
.bi, .bif {
  max-width: 100%;
  height: auto;
}




/* Styles for the new "Inspire by designs" section */
/* General Styles */
.home7 {
  font-family: Raleway, Arial, sans-serif;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}
.heading h3{
  margin: 0;
  font-size: 2em;
}

p {
  line-height: 1.5;
  margin-bottom: 20px;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
  font-size: 20px;
}
.home7 {
  margin-top: 10%;
}
/* Mobile Styles: up to 740px */
@media screen and (max-width: 740px) {
  .container {
      /* max-width: 425px; */
      margin: 0 auto;
      display: flex;
      gap: 5%;
  }
  .box1 {
      display: flex;
      flex-direction: column;
      width: 47.5%;
      gap: 30px;
  }
  .heading h3 {
      font-size: 24px;
      margin-bottom: 10px;
  }
  .heading p {
      font-size: 15px;
  }
  .box1 img {
      width: 100%;
      height: auto;
  }
  .tablet, .desktop {
      display: none;
  }
}
/* Tablet Styles: 501px - 839px */
@media screen and (min-width: 740px) and (max-width: 910px) {
.container {
margin: 0 auto;
display: flex;
/* gap: 30px; */
align-items: center;
justify-content: space-evenly;
}
.box1 {
display: flex;
flex-direction: column;
width: auto;
gap: 30px;
margin: 0 auto;
}
.box1inner1 {
display: flex;
gap: 30px;
}
.box1inner1_1 {
display: flex;
flex-direction: column;
gap: 30px;
}
.heading h3 {
font-size: 24px;
margin-bottom: 10px;
}
.heading p {
font-size: 16px;
width: 380px;
}
.box2tab {
display: flex;
flex-direction: column;
margin: 0 auto 0 0;
width: auto;
gap: 30px;
}
.box1 img, .box2tab img {
width: 100%;
height: auto;
}
.box2 {
display: none;
}
.mobile, .desktop {
display: none;
}
}
/* Progressive Image Scaling: 800px and above */
@media screen and (min-width: 800px) {
  .box1 img, .box2tab img {
      width: 104%;
      height: auto;
  }
}

@media screen and (min-width: 860px) {
.box1inner1 {
  display: flex;
  gap: 40px;
}
}

@media screen and (min-width: 880px) {
  .box1inner1 {
    display: flex;
    gap: 50px;
  }
  }

  @media screen and (min-width: 910px) {
    .box1inner1 {
      display: flex;
      gap: 60px;
    }
    }

  /* Desktop Styles: 840px and above */
/* Desktop Styles: 840px and above */
@media screen and (min-width: 910px) {
  .container {
    margin: 0 5%;
    display: flex;
    gap: 54px;
  }
  .box1 {
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
    align-items: center;
    width: 50%;
    gap: 30px;
  }
  .box1inner1 {
    display: flex;
    /* gap: 30px; */
  }
  .box1inner1_1 {
    display: flex;
    flex-direction: column;
    gap: 43px;
  }
  .logo_text h1 {
    font-size: 48px;
    /* margin-bottom: 10px; */
  }
  .home7 p {
    font-size: 20px;
    width: auto;
  }
   .box2 img {
    width: 100%;
    height: auto;
    /* max-width: 300px; Adjust this value to control the maximum width of all images */
  }
  .box1inner1_1 img {
    width: 100%; /* Adjust this value for box1 images */
  }
  .box2 {
    display: flex;
    flex-direction: column;
    gap: 43px;
    width: 25%;
  }
  /* .box2:first-of-type img {
    max-width: 250px; /* Adjust this value to make the first .box2 images smaller *
  } */
  .mobile, .tablet {
    display: none;
  }
}

/*this is home8*/
.home8 .home_brand {
  max-width: 100%;
  margin: 8% 5%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  background-color: #F7F6F7;
  padding: 5%;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
}

.home8 .logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin-top: 10%;
  gap: 35px;
}

.home8 .logo-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 20px;
  margin: 0;
}

.home8 .logo {
  flex: 0 1 auto;
  max-width: 100px;
  height: auto;
  filter: drop-shadow(0 8px 2px rgba(0, 0, 0, 0.3));
}

.home8 .stretched {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 1%;
}

.home8 h3 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 0;
  text-align: left;
}

.home8 p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

/* Mobile Styles (default) */
.home8 .tablet, .home8 .desktop {
  display: none;
}

/* Tablet Styles */
@media (min-width: 501px) and (max-width: 900px) {
  .home8 .mobile, .home8 .desktop {
      display: none;
  }
  .home8 .tablet {
      display: flex;
  }
  .home8 .home_brand {
      padding: 4%;
      box-shadow: none;
  }
  .home8 .logo-container {
      gap: 25px;
  }
  .home8 .logo {
      max-width: 90px;
  }
  .home8 h3 {
      font-size: 26px;
  }
  .home8 p {
      font-size: 16px;
  }
}

/* Desktop Styles */
@media (min-width: 901px) {
  .home8 .mobile, .home8 .tablet {
      display: none;
  }
  .home8 .desktop {
      display: flex;
  }
  .home8 .home_brand {
      flex-direction: row;
      padding: 3%;
      box-shadow: none;
      margin: 5%;
  }
  .home8 .logo-container {
      gap: 20px;
      margin: 3%;
  }
  .home8 .logo {
      max-width: 110px;
  }
  .home8 h3 {
      font-size: 32px;
      width: 100%;
      margin: 0;
  }
  .home8 p {
      font-size: 20px;
      width: auto;
      margin: 0;
  }
}
@media (min-width: 1300px) {
  .home8 .logo {
    max-width: none;
}
}
/* Adjustments for very small screens */
@media (max-width: 370px) {
  .home8 .home_brand {
      padding: 15px;
  }
  .home8 h3 {
      font-size: 18px;
  }
  .home8 p {
      font-size: 13px;
  }
  .home8 .logo-container {
      gap: 15px;
  }
  .home8 .logo-row {
      gap: 15px;
  }
  .home8 .logo {
      max-width: 60px;
  }
}

@media (max-width: 320px) {
  .home8 .home_brand {
      padding: 10px;
  }
  .home8 h3 {
      font-size: 16px;
  }
  .home8 p {
      font-size: 12px;
  }
  .home8 .logo {
      max-width: 50px;
  }
}

/*this is for home9*/
.home9 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #2A2436;
  padding: 5% 0;
  margin-top: 15%;
  /* height: 340px; */
  justify-content: center;
}

.home9 .home9inside {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0 5%;
  gap: 20px;
}

.home9 p {
  font-size: clamp(16px, 2vw, 24px);
  color: #F7F6F7;
  max-width: 100%;
}

@media screen and (min-width: 1100px) {
  .home9 p {
  max-width: 75%;
  }
}
.home9 .home9in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.home9 .home9in1 {
  display: flex;
  gap: 20px;
}

.home9 .home9in2 {
  display: flex;
  gap: 10px;
}

.home9 .shopnow, .home9 .viewsurvey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: clamp(12px, 1.5vw, 14px);
  border: none;
  border-radius: 40px;
  padding: 10px 20px;
  white-space: nowrap;
}

.home9 .shopnow {
  color: #2A2436;
  background-color: white;
}

.home9 .viewsurvey {
  color: white;
  background-color: #2A2436;
  border: 1px solid gray;
}

/* Responsive adjustments */
@media (max-width: 648px) {
  .home9 .home9inside {
    margin: 0 5%;
  }

  .home9 .home9in {
    flex-direction: column;
    align-items: flex-start;
  }

  .home9 .home9in1 {
    justify-content: center;
  }

  .home9 .home9in2 {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* .home9 .shopnow {
    width: 70%;
  }
  
  .home9 .viewsurvey {
    width: 60%;
  } */
}

@media (max-width: 480px) {
  .home9 p {
    font-size: 14px;
  }
/* .home9{
  padding: 8% 0;
} */
  .home9 .home9in1 {
    align-items: center;
  }

  .home9 .logo1, .home9 .logo2 {
    max-width: 80%;
    height: auto;
  }
}

/*this is home10*/
body {
  font-family: Raleway, Arial, sans-serif;
  margin: 0;
  box-sizing: border-box;
}

.home10-container {
  display: flex;
  flex-direction: column;

}

/* Mobile Styles */
.home10-mobile {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 18% 0;
}

.home10-image-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.home10-professional-help {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F7F6F7;
  padding: 5%;
  margin: 2% 8%;
}

.home10-container h4 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 0;
  text-align: left;
}

.home10-container p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.home10-slant {
  font-weight: bold;
  font-style: italic;
}

.home10-button-container {
  display: flex;
  justify-content: flex-end;
}

.home10-container button {
  border: none;
}

/* Hide tablet and desktop layouts */
.home10-tablet, .home10-desktop {
  display: none;
}

/* Responsive styles for mobile */
@media screen and (max-width: 450px) {
  .home10-mobile {
    gap: 30px;
  }
}

@media (max-width: 370px) {
  .home10-professional-help {
    padding: 15px;
  }
  .home10-container h4 {
    font-size: 18px;
  }
  .home10-container p {
    font-size: 13px;
  }
  .home10-image-row {
    gap: 5px;
  }
}

@media (max-width: 320px) {
  .home10-professional-help {
    padding: 10px;
  }
  .home10-container h4 {
    font-size: 16px;
  }
  .home10-container p {
    font-size: 12px;
  }
}

/* Image scaling for mobile */
@media screen and (min-width: 405px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.03);
  }
}

@media screen and (min-width: 420px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.08);
  }
}

@media screen and (min-width: 440px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.13);
  }
}

@media screen and (min-width: 460px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.18);
  }
}

@media screen and (min-width: 480px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.23);
  }
}

@media screen and (min-width: 500px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.28);
  }
}

@media screen and (min-width: 520px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.33);
  }
  .home10-mobile {
    gap: 50px;
  }
}

@media screen and (min-width: 540px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.38);
  }
  .home10-mobile {
    gap: 60px;
  }
}

@media screen and (min-width: 560px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.43);
  }
  .home10-mobile {
    gap: 70px;
  }
}

@media screen and (min-width: 580px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.48);
  }
}

@media screen and (min-width: 600px) and (max-width: 625px) {
  .home10-image-row img {
    transform: scale(1.53);
  }
}

/* Tablet Styles */
@media screen and (min-width: 625px) {
  .home10-mobile, .home10-desktop {
    display: none;
  }

  .home10-tablet {
    display: block;
    margin: 10% 0;
  }

  .home10-tablet-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 36px;
    height: 324px;
    margin-bottom: 40px;
  }

  .home10-professional-help-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .home10-professional-help-tablet {
    display: flex;
    flex-direction: column;
    background-color: #F7F6F7;
    padding: 5%;
    width: 834px;
    height: 250px;
  }

  .home10-button-container-tablet {
    display: flex;
    justify-content: flex-end;
  }

  .home10-tablet-image-column {
    display: flex;
    flex-direction: column;
    gap: 38px;
  }

  .home10-tablet-image-row {
    display: flex;
    justify-content: flex-end;
    gap: 36px;
  }
}


  /* ... (previous CSS remains the same) ... */

/* Responsive styles for tablet */
@media (min-width: 625px) and (max-width: 834px) {
  .home10-professional-help-content {
    gap: 0;
  }
}

/* @media (min-width: 625px) and (max-width: 649px) {
  .home10-container h1, .home10-container p {
    font-size: 20px;
  }
  .home10-container p {
    margin: 0;
  }
} */

@media (min-width: 650px) and (max-width: 699px) {
  .home10-professional-help-content {
    gap: 10%;
  }
}

@media (min-width: 699px) and (max-width: 749px) {
  .home10-professional-help-content {
    gap: 20%;
  }
}

@media (min-width: 749px) and (max-width: 793px) {
  .home10-professional-help-content {
    gap: 25%;
  }
}

@media (min-width: 793px) and (max-width: 811px) {
  .home10-professional-help-content {
    gap: 30%;
  }
}

@media (min-width: 811px) and (max-width: 820px) {
  .home10-professional-help-content {
    gap: 150px;
  }
}

/* Desktop Styles */
@media screen and (min-width: 820px) {
  .home10-mobile, .home10-tablet {
    display: none;
  }

  .home10-desktop {
    display: block;
    overflow: hidden;
    margin: 10% 0;
  }

  .home10-desktop-content {
    display: flex;
    gap: 40px;
    align-items: flex-end; /* Align content to the bottom */
  }
  
  .home10-desktop-main {
    display: flex;
    flex-direction: column;
    width: auto;
    justify-content: space-between; /* Distribute space between text and image row */
  }
  
  .home10-desktop-sidebar {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: auto;
    margin-right: 5px;
    align-self: stretch; /* Stretch to full height of parent */
  }
  
  .home10-desktop-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
  }
  
  .home10-desktop-image-row {
    display: flex;
    margin-left: 5px;
    gap: 40px;
    align-items: flex-end; /* Align images to the bottom */
  }

  .home10-desktop-image-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: flex-end; /* Align content to the bottom */
    height: 100%; /* Ensure full height */
  }
  
  .home10-professional-help-content-desktop {
    display: flex;
    align-items: flex-end;
    gap: 150px;
  }
  
  .home10-professional-help-desktop {
    display: flex;
    flex-direction: row;
    background-color: #F7F6F7;
    padding: 3.5%;
    margin-bottom: 40px; /* Add space between text and image row */
    width: 80%;
  }
  
  .home10-container h4 {
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: left;
  }
  
  .home10-container p {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 0px;
    text-align: left;
  }
  
  .home10-button-container-desktop {
    display: flex;
    align-items: flex-end;
  }
  
  .home10-box1 {
    display: flex;
    flex-direction: column;
  }

  /* Ensure all images have the same height */
  /* .home10-logo {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1; 
  } */

  /* Specific style for bottom-aligned images */
  .home10-bottom-align {
    align-self: flex-end;
  }
}

/* Additional responsive styles for larger screens */
@media screen and (min-width: 1024px) {
  .home10-desktop-content {
    /* max-width: 1200px; */
    margin: 0 auto;
  }
}

@media screen and (min-width: 1440px) {
  .home10-desktop-content {
    /* max-width: 1400px; */
  }
}

/* Ensure images are responsive */
/* .home10-logo {
  max-width: 100%;
  height: auto;
} */

/* Button styles */
.home10-redirect {
  background: none;
  padding: 0;
  cursor: pointer;
}

.home10-redirect img {
  max-width: 100%;
  height: auto;
}

/*this is for footer*/
footer {
  display: flex;
  flex-direction: column;
  color: #2A2436;
  gap: 50px;
  background-color: #F7F6F7;
}
a{
  color: #2A2436;
}
footer a {
  color: #2A2436;
  text-decoration: none;
}

.foot {
  display: flex;
  flex-direction: column;
  gap: 50px;
  box-sizing: border-box;
  margin: 5% 5% 1% 5%;
}

.footerin {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footerin2 {
  display: flex;
  gap: 10vw;
  margin-inline-start: 35%;
}

.footer1, .footer12, .footer13, .footer14 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prdhed {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.subfooter {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 16px;
 
}

.sub1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub1 .number {
  font-family: 'Times New Roman', Times, serif;
}
.sub1 p {
  line-height: 0.5;
  font-size: 16px;
}

.footer2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot1, .foot1 p {
  display: flex;
  gap: 20px;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-raleway);
}
.footer1 h1{
  font-size: 32px;
  width: 30px;
}
.foot1:nth-child(3) {
  text-decoration: underline;
}
@media (min-width: 1024px){
  .footer1 h1{
      font-size: 40px;
      width: 30px;
      line-height: 1;
    }
}
/* Tablet styles */
@media (max-width: 1024px) {
  .foot {
    margin: 60px 40px 10px 40px;
    gap: 30px;
  }

  .footerin2 {
    gap: 5vw;
  }

  .prdhed {
    font-size: 14px;
    margin: 0%;
  }

  .footer1, .footer12, .footer13, .footer14 {
    gap: 10px;
  }

   .footer12 span, .footer13 span, .footer14 span {
    font-size: 14px;
  }

  .subfooter, .sub1 {
    font-size: 14px;
    font-weight: bold;
    /* gap: 10px; today*/
  }

  .footer2 {
    flex-wrap: wrap;
    gap: 20px;
  }

  .foot1 {
    font-size: 10px;
  }
}

/* Mobile styles */
@media (max-width: 600px) {
  footer{
    background-color: none;
  }
  .foot {
    margin: 40px 30px 0px 30px;
    gap: 60px;
  }

  .footerin {
    flex-direction: column;
    gap: 60px;
  }

  .footerin2 {
    flex-wrap:wrap ;
    gap: 60px;
  }

  .footer1 {
    align-items: flex-start;
    text-align: center;
  }

  .subfooter {
    align-items: flex-start;
     /* gap: 10px; */
  }

  .footer12, .footer13, .footer14 {
   
    text-align: left;
  }

  .footer2 {
      flex-direction: column;
      align-items: flex-start;
    gap: 20px;
  }
  .foot1{
    font-size: 10px;
    gap: 30px;
  }
  .foot1:nth-child(3) {
    display: flex;
    
    order: 2;
    text-align: left;
    text-decoration: underline;
  }

  .foot1:nth-child(2) {
    order: 1;
  }
  .foot1:nth-child(1) {
      order: 3;
    }

}

section[style*="display:none"] {
    display: none;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 5% auto; /* 5% from the top and centered */
  padding: 20px;
  border-radius: 8px;
  width: 90%; /* Could be more or less, depending on screen size */
  max-width: 800px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: modalShow 0.3s;
}

/* Modal Animation */
@keyframes modalShow {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}

/* Modal Header */
.modal-content h1 {
  margin-top: 0;
  font-size: medium;
}

/* Modal Body */
.modal-content p {
  margin-bottom: 1em;
  font-size: small;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .modal-content {
 width: 85%;
      margin-top: 15%;
  }

  .close {
      font-size: 24px;
      top: 5px;
      right: 10px;
  }
}

.sitemap-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sitemap-section {
  flex: 1 1 200px;
}

.sitemap-section h2 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.sitemap-section ul {
  list-style-type: none;
  padding-left: 0;
}

.sitemap-section li {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .sitemap-section {
      flex-basis: 100%;
  }
}


.menu-toggle {
  cursor: pointer;
}

.menu-toggle svg {
  transition: transform 0.3s ease;
}

.menu-toggle.active svg {
  transform: rotate(180deg);
}

.menu-toggle path {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active path:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active path:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active path:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*logo*/
.econstru{
  width: 150px;
}
@media screen and (max-width:500px) {
  .econstru{
    width: 120px;
  }
}