 /* Reset & base */
 html, body {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  
}

body {
    margin: 0;
    padding: 0;
    background-color: #1f1f1f;
    color: white;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
.custom-navbar {
  background-color: #2A2925;
  height: 95px;
 
  width: 1282px;
  margin: 0 auto;
  position: absolute;
  padding: 0 1rem;
  z-index: 1050;
  left: 35px;
}

/* Logo */
.navbar-logo {
  position: absolute;
  top: 28px;
  left: 135px;
  width: 83px;
  height: 41.2px;
}

/* Search Bar Group */
.navbar-search-group {
  position: absolute;
  top: 30px;
  left: 405px;
  width: 620px;
  height: 35px;
}

/* Background Box for Search */
.search-background {
  width: 100%;
  height: 100%;
  background: #D9D9D9;
  border: 1px solid #205F6E;
  border-radius: 5px;
}

/* Blue Search Button */
.search-button {
  position: absolute;
  width: 86px;
  height: 35px;
  background: #205F6E;
  border-radius: 5px 0 0 5px;
  left: 0;
  top: 0;
}

/* Search Text */
.search-text {
  position: absolute;
  left: 20px;
  top: 8px;
  color: #FFFFFF;
  font-family: 'Public Sans';
  font-size: 13.3259px;
  font-weight: 500;
}

/* Right Section (Log in + Try it free) */
.navbar-right-section {
  position: absolute;
  top: 33px;
  left: 1087px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Log in Text */
.login-text {
  color: #FFFFFF;
  font-family: 'Public Sans';
  font-size: 13.3259px;
  font-weight: 500;
}

/* Try it free button */
.try-it-free-btn {
  background: #FFB902;
  border-radius: 7.1px;
  padding: 7.1px 14.2px;
  font-family: 'Public Sans';
  font-size: 13.3px;
  font-weight: 500;
  color: #050400;
  border: none;
}

/* hero  */
.hero-section {
  position: absolute;
  width: 1281px;
  height: 816px;
  background: url('../images/background.jfif') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  margin: 0 auto;
  left: 35px;
  top: 95px;
}
.hero-overlay {
  position: absolute;
  top: 0px;
  left: 0;
  width: 1281px;
  height: 816px;
  background: rgba(0, 0, 0, 0.62);
}
.page-links {
  position: absolute;
  top: 27px;
  left: calc(50% - 390.46px/2 - 309.77px);
  display: flex;
  gap: 32.99px;
  z-index: 2;
}
.page-links .link {
  display: flex;
  align-items: center;
  gap: 4.12px;
  font-size: 15.47px;
  color: white;
  font-weight: 500;
}
.hero-title {
  position: absolute;
  top: 149px;
  left: 59px;
  width: 791px;
  font-weight: 700;
  font-size: 59.48px;
  line-height: 59.48px;
  color: white;
  letter-spacing: -2%;
}
.hero-subtitle {
  position: absolute;
  top: 341px;
  left: 59px;
  width: 619px;
  font-weight: 300;
  font-size: 29.69px;
  line-height: 32.16px;
  color: white;
  letter-spacing: -2%;
  height: 65px;
}
.hero-button {
  position: absolute;
  top: 500px;
  left: calc(50% - 190px/2 - 484px);
  width: 190px;
  height: 45.31px;
  background: #FFD700;
  border-radius: 13.89px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 17.37px;
  color: #050400;
}
.testimonials-title {
  position: absolute;
  top: 590px;
  left: 41px;
  width: 496.25px;
  font-weight: 700;
  font-size: 44.61px;
  line-height: 48.32px;
  text-align: center;
  color: white;
  letter-spacing: -2%;
}
.testimonial-wrapper {
  position: absolute;
  top: 769px;
  right: 0;
  width: 1217px;
  display: flex;
  align-items: flex-start;
  gap: 20.23px;
  left: 98px;
  z-index: 2;
  height: 500px;
  overflow: hidden;
  overflow-x: scroll; /* Allow horizontal scrolling */ /* Enable horizontal scrolling */
  flex-wrap: nowrap; /* Prevent wrapping of cards */
  scroll-snap-type: x proximity; /* Optional: For snap effect */
  -webkit-overflow-scrolling: touch;
}

/* To hide the scrollbar in Webkit browsers (Chrome, Safari) */
.testimonial-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 13.49px;
  padding: 20.23px;
  width: 242.736px; /* Ensure a consistent width */
  background: #FFD700;
  border-radius: 14px;
  overflow: visible;
  min-width: 242.736px; /* Prevent shrinking */
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header .text-content {
  display: flex;
  flex-direction: column;
  font-family: 'Filson Pro', sans-serif;
  color: #303030;
}

.text-content .name {
  font-weight: 700;
  font-size: 13px;
}

.text-content .position {
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
}

.testimonial-quote {
  display: flex;
  gap: 10px;
  opacity: 0.8;
}

.testimonial-line {
  height: auto;
  border-radius: 0.84px;
  border: 1.26px solid rgba(52, 52, 52, 0.81);
  margin-left: 15px;
}

.testimonial-text {
  font-size: 16.86px;
  color: #303030;
  line-height: 20.23px;
  font-weight: 400;
  margin-left: 21px;
}

/* blur layer  */
.rectangle-5 {
  position: absolute;
  width: 1446px;
  height: 185px;
  left: -87px;
  top: 786px; /* Adjust this top value to align it where you need */
  background-image: url('../images/rectangle.png'); /* Replace with the path to your image */
  background-size: cover;  /* Ensure the image covers the full area */
  background-position: center;  /* Center the image */
  filter: blur(15.9px);  /* Apply blur effect */
  z-index: 1;  /* Ensure it's behind other content */
  overflow: hidden;
}

/* About Us Section */
.about-us-wrapper {
  position: absolute;
  width: 1285px;
  height: 978px; /* or however tall your section actually is */
  overflow: hidden;
  top: 921px;
  z-index: 1;
  left: 35px;
}

/* Remove margin for medium and larger screens */
@media (min-width: 768px) {
  .about-us-left {
      margin-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .about-us-left {
    margin-left: -40px !important;
  }
}

@media (min-width: 1283px) {
  .custom-card2 {
    margin-left: -30px !important;
  }
}


@media (max-width: 768px) {
  .custom-card2 {
    margin-left: -80px !important;
  }
}


.about-us-image {
  position: absolute;
  width: 1463.48px;
  height: 1075.77px;
  left: -78.58px;
  top: 0;
  background: url('../images/about.jfif');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.about-us-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F9F6F1;
  opacity: 0.93;
  z-index: 1;
}

.about-us-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 150px;
  left: 20px;
  top: -30px;
}

.about-us-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 19.99px;
  letter-spacing: 1.24921px;
  text-transform: uppercase;
  color: #365953;
  left: 68px;
}
.about-us-heading {
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #000000;
  margin-top: 20px; /* space below 'about us' label */
  max-width: 375px;
  display: flex;
  align-items: left;
  left: 68px;
}
.about-us-row {
  margin-top: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border: 2.5px solid #F9F6F1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  margin-left: -15px;
}

.total-count {
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.count-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.3px;
  color: #F9F6F1;
  line-height: 20px;
}

.about-us-right p {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #343434;
  align-items: right;
}
.left-description{
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #343434;
  margin-right: -70px;
}
.image-container {
  position: absolute;
  width: 292.1646423339844px;
  height: 360px;
  left: 63px;
  top: 398px;
  overflow: hidden; /* Ensures image doesn't overflow container */
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image is cropped correctly within the container */
  border-radius: 5.40338px;
}
.large-background {
  position: absolute;
  width: 831.0352172851562px;
  height: 360px;
  left: 383.96px;
  top: 398px;
  background: url('../images/city.png');
  background-size: cover; /* Ensures image fills the box */
  background-position: center; /* Keeps image centered when cropping */
  background-repeat: no-repeat;
  border-radius: 5.40338px;
}
.video-popup {
  box-sizing: border-box;
  position: absolute;
  width: 162px;
  height: 162px;
  left: 288px;
  top: 500px;
  background: #333333;
  border: 7.2px solid #F9F6F1;
  border-radius: 50%;
  z-index: 3; /* Make sure it stays above background image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 72px;
  height: 72px;
  transform: scaleY(-1); /* Matches the matrix flip from Figma */
}
.horizontal-divider {
  box-sizing: border-box;
  position: absolute;
  width: 1151.99072265625px;
  height: 0.9px;
  left: 63px;
  top: 800px;
  border-top: 0.9px solid rgba(51, 51, 51, 0.32);
}
.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  display: flex;
  align-items: center; /* Aligning icon and text horizontally */
  justify-content: center;
  line-height: 1;
}

.metric-icon {
  margin-right: 8px; /* Space between icon and text */
}

.metric-number {
  font-style: normal;
  font-weight: 500;
  font-size: 72px;
  line-height: 79px;
  color: #333333;
}

.metric-suffix {
  font-style: normal;
  font-weight: 500;
  font-size: 59px;
  line-height: 65px;
  margin-left: 4px;
  color: #333333;
}

.metric-label {
  font-style: normal;
  font-weight: 400;
  font-size: 16.2px;
  line-height: 24px;
  color: #000000;
  margin-top: 8px;
  text-transform: capitalize;
}

/*   vision   */

.vision-section {
  position: absolute;
   height: 1230px;
  width: 1281px;
  left: 35px;
  top: 1895px;
  overflow: hidden;
}

.background-image {
  position: absolute;
  width: 1531.903076171875px;
  height: 1333px;
  left: calc(50% - 1531.9px/2 + 12.5px);
  top: -92px;
  background: url('../images/344497afba2e19d2d95e9f2ffd5feba2.jfif') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.background-overlay {
  position: absolute;
  width: 1283px;
  height: 1230px;
  left: -1px;
  top: 0px;
  background: #000000;
  opacity: 0.62;
  z-index: 2;
}

.vision-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  top: 65px;
}
.vision-title {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 1.00048px;
  text-transform: uppercase;
  color: #FFD700;
  margin-bottom: 1rem;
}
.vision-headline {
  font-style: normal;
  font-weight: 800;
  font-size: 42px;
  line-height: 50px;
  color: #FFFFFF;
  max-width: 836px;
  margin: 0 auto 1rem;
}
.vision-description {
  font-style: normal;
  font-weight: 350;
  font-size: 18px;
  line-height: 32px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 879px;
  margin: 0 auto;
}
.group-section {
  background-color: transparent;
  width: 1152px;
  height: 747.2434692382812px;
  top: 2274px;
  margin-left: 0px;

}

.column-img {
  width: 373.6216125488281px;
  height: 488.2555236816406px;
  top: 2274px;
  left: 437.62px;
  object-fit: cover;
}

.left-card {
  display: flex;
  flex-direction: column;
  width: 373.6216125488281px;
  height: 247.6658477783203px;
  top: 2773.58px;
  left: 64px;
  
}

.middle-card {
  display: flex;
  flex-direction: column;
  width: 374px;
  height: 248px;
  top: 2773px;
  left: 453px;
}


.right-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 373.6216125488281px;
  height: 747.2432250976562px;
}

.text-overlay {
  background: rgba(0, 0, 0, 0.71);
  padding: 1rem;
  color: #fff;
}

.value-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  text-transform: capitalize;
  color: #365953;
  margin-top: 1rem;
}

.value-desc {
  font-weight: 350;
  font-size: 15px;
  line-height: 22px;
  text-transform: capitalize;
  color: #000000;
}

.value-box {
  background-color: #365953;
  height: 248px;
  color: #fff;
  padding: 1rem;
  top: 2773px;
}

.value-box h5 {
  top: 2809px;
  text-align: left;
  height: 44px;
  width: 231px;
  margin: 25px 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
}

.value-box p {
  margin: 25px 10px;
  font-weight: 350;
  font-size: 15px;
  text-align: left;
  text-transform: capitalize;
}
.overlay-dark {
  height: 242px;
  width: 374px;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.71), rgba(0, 0, 0, 0.71)),
    url('../images/city2.png') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.right-card {
  width: 373.62px;
  height: 747.2432250976562px;
  background-color: #F7EFE5;
  padding: 1rem;
  position: relative;
}

/* Shared Section Styling */
.value-section {
  position: relative;
  padding-left: 10px;
}

/* Section Numbers */
.section-number {
  position: absolute;
  top: 70px;
  left: 300px;
  color: #FFD700;
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
}

.section-number2 {
  position: absolute;
  top: -20px;
  left: 300px;
  color: #FFD700;
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
}

/* Titles */
.value-title {
  color: #365953;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-transform: capitalize;
  margin-top: 90px; /* You can adjust this */
  margin-bottom: 5px;
  text-align: left;
}

.value-title2 {
  color: #365953;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-transform: capitalize;
  margin-top: -200px;  /* No need for negative margin now */
  margin-bottom: 5px;
  text-align: left;
}


/* Descriptions */
.value-desc {
  font-size: 15px;
  font-weight: 350;
  line-height: 22px;
  color: #000;
  text-transform: capitalize;
  text-align: left;
  margin-bottom: 10px; /* Adjust this as needed — reduce spacing after paragraph */
}


.value-desc2 {
  font-size: 15px;
  font-weight: 350;
  line-height: 22px;
  color: #000;
  text-transform: capitalize;
  text-align: left;
  margin-top: 5px; /* Adjust this to control space above desc2 */
}

/* Custom Margins to Fine-Tune Each Section */
.custom-spacing-1 {
  margin-top: 20px;  /* Adjust carefully */
  margin-bottom: 30px; /* Optional */
}

/* Reduce space above the entire second section */
.section-2 {
  transform: translateY(-110px);
}

/* Reset title margin so it doesn't push more */
.value-title2 {
  margin-top: 0;
  margin-bottom: 5px;
}

/* Leave paragraph spacing as normal */
.value-desc2 {
  margin-top: 20px;
}

/*   Our Services  */
.custom-section {
  position: absolute;
  height: 1292px;
  width: 1283px;
  left: 35px;
  top: 3125px;
  overflow: hidden;
}

/* Background Image */
.background-services {
  position: absolute;
  width: 1484.79px;
  height: 1292px;
  left: 50%;
  top: 0;
  transform: translateX(calc(-50% - 23px));
  background-image: url('../images/344497afba2e19d2d95e9f2ffd5feba2.jfif');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Semi-transparent overlay */
.color-overlay {
  position: absolute;
  width: 1283px;
  height: 1292px;
  left: 50%;
  top: 0;
  transform: translateX(calc(-50% - 0.5px));
  background-color: #365953;
  opacity: 0.92;
  z-index: 2;
}
/* Content */
.services-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  text-align: center;
  z-index: 3;
  padding-top: 70px; /* simulate the space from the top */
}

/* Small title */
.services-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 44px;
  color: #FFD700;
  margin-bottom: 12px;
  
}

/* Main heading */
.services-heading {
  width: 620;
  height: 99;
  top: 3243px;
  left: 333px;
  font-weight: 800;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
}

/* Paragraph */
.services-description {
  width: 594;
  height: 66;
  top: 3364px;
  left: 346px;
  font-weight: 350;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #FFFFFF;
}
.custom1-section {
  width: 868.66455078125px;
  position: absolute;
  height: 840.8798828125px;
  z-index: 3;
  left: 109px;
  top: 290px;
  
}

.custom1-card {
  background: #fff;
  border-radius: 24.4025px;
  width: 424.33px;
  height: 195.22px;
  position: relative;
  padding: 24px 32px;
}

.custom1-card .card-title {
  font-weight: 500;
  font-size: 17.78px;
  line-height: 18.16px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 10px;
}

.custom1-card .card-text {
  color: #474747;
  font-weight: 400;
  font-size: 11.67px;
  line-height: 15.08px;
  letter-spacing: 0%;

}

.icon {
  margin-bottom: 12px;
}


/*  faq   */
.faq-section {
  position: absolute;
  overflow: hidden;
  height: 822px; /* same as your Rectangle 6 height */
  width: 1282px;
  top: 4416px;
  left: 35px
}

.faq-background-image {
  position: absolute;
  top:-120px; /* to adjust, because your bg image starts higher */
  left: 0;
  width: 1282px;
  height: 940px;
  background-image: url('../images/about.jfif');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.faq-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1282px;
  height: 822px;
  background: #F9F6F1;
  opacity: 0.93;
  z-index: 2;
}

.faq-container{
  width: 739;
  height: 139;
  top: 57px;
  left: 310px;
  z-index: 3;
  position: absolute;
}
.faq-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 44px;
  color: #365953;
  margin-left: -105px;
}

.faq-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 47px;
  letter-spacing: -0.3px;
  color: #000000;
  margin-left: -105px;
}

.faq-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: #78797A;
  max-width: 740px;
  margin: 0 auto;
  margin-left: -105px;
}
.faq-questions {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #222;
  margin-left: -125px;
}

.faq-item {
  text-align: left;
  border-bottom: 1px solid #365953;
  padding: 16px 0;
  position: relative;
  cursor: pointer;
  width: 885px;
}

.faq-item h4 {
  font-size: 18.99px ;
  margin: 0;
  font-weight: 500;
  color: #000000;
}

.faq-item::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 18px;
  font-weight: bold;
  color: #444;
}

.faq-item.expanded::after {
  content: '−'; /* minus sign */
}

.faq-answer {
  font-size: 12.66px;
  color: #000000;
  margin-top: 8px;
  line-height: 18.99px;
  font-weight: 400;
}

/*    Service2    */
.service2 {
  position: absolute;
  width: 1285px;
  height: 848px;
  margin: 0 auto;
  top: 5238px;
  overflow: hidden;
  left: 35px;
}

.service2 .overlay {
  position: absolute;
  width: 1285px;
  height: 848px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #365953;
  opacity: 0.97;
  z-index: 1;
}

.custom-bg-img {
  position: absolute;
  width: 1302px;
  height: 848px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: 0;
}

/* Service2 */
.service2-group {
  width: 936px;
  height: 233px;
  left: 180px;
  top: 70px; /* relative to service2 */
  position: absolute;
  z-index: 2;
}

.service2-group2{
  width: 858px;
height: 403px;
top: 5601px;
left: 211px;

}
/* Our Services */
.small-heading {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 44px;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

/* Real Stories, Real Growth */
.big-heading {
  font-style: normal;
  font-weight: 800;
  font-size: 42px;
  line-height: 50px;
  color: #FFFFFF;
  margin-bottom: 30px;
}

/* Paragraph description */
.description {
  font-style: normal;
  font-weight: 350;
  font-size: 15px;
  line-height: 32px;
  color: #FFFFFF;
}

.service2-group2 {
  max-width: 1200px;
  z-index: 3;
  margin-top: 301px !important;
}

.story-card {
  width: 271px;
  height: 403px;
  background: #FFFFFF;
  border-radius: 8px;
}

.ellipse {
  width: 18px;
  height: 18px;
  background: #D9D9D9;
  margin-left: 15px;
}

.small-label {
  font-weight: 350;
  font-size: 7.45px;
  line-height: 7px;
  color: #000000;
  margin-left: 15px;
}

.story-title {
  font-weight: 700;
  font-size: 25.95px;
  line-height: 26px;
  color: #000000;
  text-align: left;
  margin-left: 15px;
}

.problem-text {
  font-weight: 400;
  font-size: 8.85px;
  line-height: 9px;
  color: #000000;
  text-align: left;
  margin-left: 15px;
}

.solution-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  text-align: left;
  margin-left: 15px;
}

.highlight-box {
  width: 220px;
  height: 119px;
  border-radius: 8px;
}

.highlight-box.bg-warning {
  background: #FFD700;
}

.highlight-box.bg-dark {
  background-color: #365953;
}

.highlight-box.bg-image {
  background: url('../images/camera.jfif') center/cover no-repeat;
  margin-left: 10px;
}

.highlight-text3 {
  font-family: 'Filson Pro', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #000000;
  margin: 0;
  text-align: left;
  margin-left: 15px;
}
.highlight-text2 {
  font-weight: 500;
  font-size: 17px;
  line-height: 20.99px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: left;
} 

.highlight-text1 {
  font-weight: 500;
  font-size: 17px;
  line-height: 20.99px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: left;
  color: #000000;
} 

.highlight-text2 span {
  font-weight: 500;
  font-size: 44px;
  line-height: 37px;
  letter-spacing: 0%;
  vertical-align: middle;
} 

.highlight-text1 span {
  font-weight: 500;
  font-size: 44.19px;
  line-height: 37px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
} 

/*    Contact Us   */
.contact-section {
  position: absolute;
  width: 1284px;
  height: 644px;
  top: 0px;
  left: 35px;

  /* Add any other necessary styles for your contact section */
}

.contact-image {
  position: absolute;
  width: 1284px;
  height: 644px;
  left: -2px;
  top: 6086px;
  background: #F7EFE5;
  /* Ensure the parent section has enough space for this absolute positioning */
}

.background-image-1 {
  position: absolute;
  width: 1473.29px;
  height: 731.37px;
  background: url('../images/Untitled\ \(2160\ x\ 1080\ px\)\ 2.png') no-repeat center center;
 
}

.background-image-2 {
  position: absolute;
  width: 1473.29px;
  height: 731.37px;
  background: url('../images/Untitled\ \(2160\ x\ 1080\ px\)\ 1.png') no-repeat center center;
 
}

.background-image-1 {
  left: -400px;
  top: 6049px;
  width: 1473.29px;
  height: 731.37px;
}

.background-image-2 {
  right: -400px;
  top: 6049px;
  width: 1473.29px;
  height: 731.37px;
 
}
.contact-blur {
  position: absolute;
  width: 370px;
  height: 572px;
  left: 419px;
  top: 6099px;
  background: #F7EFE5;
  filter: blur(20.9px);
  z-index: 1; /* Ensure it's placed between the two images */
}
.email-section {
  position: absolute;
  width: 888px;
  height: 507.41px;
  margin-left: 0px;
  top: 0px;
  display: flex;
  z-index: 3;
}

/* Left Image Card */
.email-left {
  position: absolute;
  width: 440px;
  height: 507px;
  left: 196px;
  top: 6154px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%),
              url('../images/Group\ 98.png')  center/cover no-repeat;
  border-radius: 24px;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}


/* Red corner rectangles */
.email-left::before, .email-left::after {
  content: "";
  position: absolute;
  width: 59px;
  height: 59px;
  background: #F7EFE5;
}

.email-left::before {
  top: 0;
  left: 0;
  border-radius: 0 0 24px 0;
}

.email-left::after {
  bottom: 0;
  right: 0;
  border-radius: 0 0 24px 0;
  transform: rotate(180deg);
}

/* Overlay text */
.overlay-text {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 24.76px;
  margin-bottom: 20px;
  margin-top: 287px;
}

.overlay-text p {
  font-weight: 400;
  font-size: 11.5px;
  line-height: 15px;
  margin-top: 10px;
  color: #FFFFFF;
}


/* Right Form */
.email-right {
  position: absolute;
  width: 423px;
  height: 507.41px;
  left: 661px;
  top: 6154px;
  background: #FDF9F3;
  border-radius: 19.4803px;
  padding: 20px 20px;
}

.email-right form {
  display: flex;
  flex-direction: column;
}

.email-right p {
  margin-bottom: 5px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17.27px;
  line-height: 26px;
  color: #000000;
  margin-left: 10px;
}

.email-right input[type="text"],
.email-right input[type="email"] {
  box-sizing: border-box;
  width: 100%;
  height: 53px;
  background: #FFF9F1;
  border: 0.28px solid #C6C6C6;
  border-radius: 7.45px;
  padding: 10px;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17.27px;
  color: #E5E5E5;
}

.email-right textarea {
  box-sizing: border-box;
  width: 100%;
  height: 161px;
  background: #FFF9F1;
  border: 0.28px solid #C6C6C6;
  border-radius: 7.45px;
  padding: 10px;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17.27px;
  color: #ECECEC;
}

.email-right button {
  width: 100%;
  height: 51px;
  background: #365953;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 700;
  font-size: 17.27px;
  line-height: 26px;
  border: none;
  border-radius: 14.20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Subscribe Section */
.subscribe-section {
  background: #365953;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 1284px;
  height: 96px;
  top: 6730px;
  left: 35px;
}

.subscribe-container {
  width: 1284px;
  height: 96px;
  display: flex;
  justify-content: flex-start; /* Aligns items to the left */
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.subscribe-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subscribe-text h2 {
  font-weight: 700;
  font-size: 15px;
  line-height: 17.81px;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-left: 139px;
  margin-top: 10px;
}

.subscribe-text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 17.81px;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-left: 139px;
}

.subscribe-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 7.125px 10.6875px;
  gap: 20px;
  position: absolute;
  width: 340px;
  height: 32.25px;
  left: 712px;
  background: #FFFFFF;
  border-radius: 7.125px;
}

.subscribe-form input[type="email"] {
  width: 318.62px;
  height: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.3594px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
  border: none;
  flex-grow: 1; /* Takes up available space */
}

.subscribe-form button {
  width: 86.5;
  height: 32.25;
  top: 6765px;
  left: 1055px;
  border-radius: 7.13px;
  border-width: 1.34px;
  padding-top: 7.13px;
  padding-right: 14.25px;
  padding-bottom: 7.13px;
  padding-left: 14.25px;  
  margin-left: 150px;
  border-top: 1.34px solid #FFFFFF;
  background-color: #365953;
  color: #FFFFFF;
  font-family: 'Outfit';
  font-weight: 500;
  font-size: 13.36px;
}


/*   footer   */
.custom-footer {
  position: absolute;
  background: #FDFAEB;
  width: 1284px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 6826px;
  left: 35px;
  height: 318px;
}

.footer-top {
  position: absolute;
  width: 1284px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 120px;
  padding-right: 120px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo img {
  width: 84.53px;
  height: 41.96px;
}

.footer-description {
  width: 262px;
  font-weight: 500;
  font-size: 13.4px;
  line-height: 18px;
  color: #000000;
  margin-top: 20px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-column h4 {
  font-weight: 700;
  font-size: 13.4px;
  line-height: 18px;
  color: #000000;
}

.footer-link-column a {
  font-weight: 400;
  font-size: 13.4px;
  line-height: 18px;
  color: #000000;
  text-decoration: none;
}

.footer-contact {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact h4 {
  font-weight: 700;
  font-size: 15px;
  color: #281D1B;
}

.footer-contact p {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #2E1914;
  margin: 0;
}

.footer-socials {
  display: flex;
  justify-content: center;  /* Centers the icons horizontally */
  align-items: center;      /* Centers the icons vertically */
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 24.75px;      /* Set width for the icons */
  height: 24.75px;     /* Set height for the icons */
  display: flex;
  justify-content: center; /* Align the image inside */
  align-items: center;     /* Align the image inside */
  border-radius: 50%;      /* Optional: makes icons circular */
  background-color: #fff; /* Optional: adds background color for better visibility */
}

/* Footer Bottom Pattern */
.footer-bottom {
  width: 100%;
  margin-top: 250px;
  position: relative; /* Relative position to contain the absolute children */
}

/* Vector 1 */
.vector1 {
  position: absolute;
  top: -25px; /* Adjust as needed */
  left: 201px; /* Adjust as needed */
  z-index: 2; /* Make sure it stays on top */
}

.vector1 img {
  width: 201px; /* Fixed width */
  height: 70px; /* Fixed height */
}

/* Vector 2 */
.vector2 {
  position: absolute;
  top: 0; /* Adjust as needed */
  left: 0; /* Adjust as needed */
  z-index: 1; /* Keep it below vector1 */
}

.vector2 img {
  width: 1285px;
  height: 72px;
}

.footer-end {
  position: absolute;
  width: 1284px;
  height: 58px;
  /* Adjust this to be just below the vector images */
  z-index: 0; /* Ensure it's behind the vector images */
  background-color: #365953;
  top: 70px;
}

.footer-end p {
  font-weight: 500;
  font-size: 15px;
  line-height: 17.81px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  margin-top: 15px;
}



