/* --- Base Styles --- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.menu {
  display: flex;
  align-items: center;
  padding: 30px 80px;
  width: 100%;
  max-width: 1440px;
  box-sizing: border-box;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.frame-427321817 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 450px;
  width: 100%;
}

.logo img {
  width: 172px;
  height: 60px;
}

.navigation {
  display: flex;
  gap: 44px;
  justify-content: center;
  align-items: center;
}

.navigation a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #020407;
  position: relative;
  transition: color 0.2s;
}

.navigation a:hover,
.navigation a:focus {
  color: #ED1C24;
}

.navigation a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #ED1C24;
  opacity: 0;
  transition: opacity 0.2s;
}

.navigation a:hover::after,
.navigation a:focus::after {
  opacity: 1;
}

.frame-427320699 {
  display: flex;
  align-items: center;
}

.get-started-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid #010205;
  border-radius: 50px;
  width: 156px;
  height: 48px;
  box-sizing: border-box;
}

.get-started {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #010205;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #020407;
  border-radius: 2px;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 160px 80px 80px;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 121%;
  letter-spacing: -0.03em;
  color: #1E1E1E;
  margin: 0 0 24px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 29px;
  color: #878C91;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 31px;
  margin-bottom: 32px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.call-button {
  padding: 16px 32px;
  background-color: #ED1C24;
  color: white;
  border-radius: 70px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.trusted-by {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  justify-content: space-between;
}

.trusted-by p {
  margin: 0;
  font-weight: 200;
  font-size: 0.9rem;
  white-space: nowrap;
  line-height: 1.2;
  color: #7b7b7b;
}

.client-logos {
  display: flex;
  gap: 30px;
}

.client-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

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

.info-box {
  position: static;
  width: 100%;
  max-width: 639px;
  margin: 0;
  height: 216px;
  border-radius: 20px;
  background: #010205;
  backdrop-filter: blur(42px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.info-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 0 40px;
  justify-content: space-between;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.info-text h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 139%;
  margin: 0;
}

.shop-now {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 113px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #010205;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
}

.info-image {
  height: 127px;
  width: auto;
  object-fit: contain;
}

/* --- Services Section --- */
.services-section {
  width: 100%;
  background: #FFF0F1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1240px;
}

.services-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #111111;
  margin: 0;
}

.services-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 166%;
  text-align: center;
  text-transform: capitalize;
  color: #6F6F6F;
  padding-bottom: 40px;
  max-width: 890px;
}

.services-cards-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 32px;
  max-width: 1240px;
  width: 100%;
}

.service-card {
  background: #fff;
  border: 1px solid #ED1C24;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 32px 24px;
  width: 386px;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #1E1E1E;
  margin: 0 0 12px 0;
}

.service-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.016em;
  text-transform: capitalize;
  color: #6F6F6F;
  margin: 0;
}

/* --- Why Choose Us Section --- */
.why-choose-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 90px 120px;
  gap: 68px;
  background: #fff;
  max-width: 1440px;
  margin: 0 auto 0 auto;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 617px;
  max-width: 100%;
}

.why-choose-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 128%;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #111111;
  margin: 0;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.why-choose-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.why-choose-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #ED1C24;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

.why-choose-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.016em;
  text-transform: capitalize;
  color: #6F6F6F;
  max-width: 535px;
}

.why-choose-image img {
  width: 528px;
  height: 594px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* --- Testimonials Section --- */
.testimonials-section {
  width: 100%;
  background: #FFF0F1;
  padding: 100px 0 170px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 53px;
}

.testimonials-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 128%;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #111111;
  margin: 0 auto;
  max-width: 847px;
}

.testimonials-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 73px;
  max-width: 1240px;
  width: 100%;
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 583.5px;
  min-height: 332px;
  box-sizing: border-box;
  position: relative;
}

.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.testimonial-quote-icon img {
  width: 60px;
  height: 60px;
  display: block;
}

.testimonial-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #111111;
  margin: 0;
  width: 100%;
}

.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: rgba(17, 17, 17, 0.5);
  margin: 0;
  width: 100%;
}

.testimonial-author span {
  font-size: 18px;
  color: rgba(17, 17, 17, 0.5);
}

/* --- Footer Section --- */
.footer-section {
  width: 100%;
  background: #FAFAFA;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta {
  background: #020609;
  border-radius: 30px;
  width: 90%;
  max-width: 1110px;
  margin: 30px auto 0 auto;
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 185px;
  position: relative;
  top: -110px;
  z-index: 2;
}

.footer-cta-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.03em;
  margin: 0;
}

.footer-cta-button {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 70px;
  padding: 16px 32px;
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #010205;
  text-decoration: none;
  gap: 12px;
  transition: background 0.2s;
}

.footer-cta-button:hover {
  background: #f0f0f0;
}

.footer-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 140px;
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 0 40px 0;
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 534px;
  width: 100%;
}

.footer-logo img {
  width: 172px;
  height: 60px;
  object-fit: contain;
}

.footer-description {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #9B9B9C;
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 60px;
  transition: background 0.2s;
}

.footer-socials a:hover {
  background: #ED1C24;
}

.footer-socials img {
  width: 18px;
  height: 18px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 240px;
}

.footer-contact h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #192031;
  margin-bottom: 12px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #9B9B9C;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.footer-contact img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-top: 2px;
}


/* --- Services Section --- */
.services-section {
  padding: 100px 0;
  text-align: center;
  background: #fff;
}

.services-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #111;
  margin-bottom: 80px;
}

.service-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto 80px;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  align-content: center;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image img {
  width: 100%;
  max-width: 460px;
  height: 460px;
  border-radius: 20px;
  object-fit: cover;
}

.service-content {
  max-width: 600px;
  text-align: left;
}

.service-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: -0.03em;
}

.service-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 190%;
  color: #808080;
  text-transform: capitalize;
}


/* --- About Section --- */
.about {
  background: #ffffff;
  padding: 190px;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 320px;
  max-width: 617px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: #111111;
  margin: 0 0 24px;
}

.about-paragraph {
  font-size: 18px;
  line-height: 1.7;
  color: #808080;
  margin: 0;
}

.about-images {
  flex: 1;
  max-width: 528px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* --- Mission & Vision Section --- */
.mission-vision {
  background-color: #FFF0F1;
  padding: 100px 80px;
}

.mv-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 73px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mv-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 45px;
  max-width: 583.5px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.mv-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
  margin: 0;
}

.mv-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #111111;
  margin: 0;
}

/* --- Core Values Section --- */
.core-values {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 180px;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.core-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: #111111;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
}

.core-container {
  background: #020202;
  border-radius: 24px;
  padding-top: 50px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 50px;
  max-width: 1240px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1px;
  flex-wrap: wrap;
}

.core-card {
  width: 240px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  gap: 24px;
  color: #ffffff;
}

.core-icon {
  width: 132px;
  height: 124px;
  object-fit: contain;
}

.core-card-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.core-card-text {
  font-size: 19px;
  font-weight: 100;
  line-height: 1.4;
  text-align: justify;
  margin: 0;
}

/* --- Clients Section --- */
.clients {
  background: #ffffff;
  padding-top: 190px;
  padding-bottom: 120px;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.clients-heading {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.28;
  text-transform: capitalize;
  text-align: center;
  color: #111111;
  margin: 0;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 57px;
  padding: 0 20px;
  max-width: 1240px;
  width: 100%;
}

.client-logos-home {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 27px;
  padding: 10px 0px;
  max-width: 1240px;
  width: 100%;
  /* flex-direction: row-reverse; */
}


.client-logos img {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
  height: auto;
  width: auto;
}

/* --- Reference Letters --- */
.reference-heading {
  font-size: 50px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.03em;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}

.reference-download {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 637px;
  height: 70px;
  margin: 0 auto;
  text-decoration: none;
  position: relative;
}

.ref-icon {
  background: #000;
  border-radius: 25px 0 0 25px;
  width: 71px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ref-icon img {
  width: 35px;
  height: 35px;
}

.ref-button {
  background: #ED1C24;
  color: #fff;
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: normal;
  height: 70px;
  width: 566px;
  border-radius: 0 20px 20px 0;
  padding-left: 24px;
  text-align: left;
  z-index: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  display: flex;
  align-items: center;
}

/* --- Responsive Styles --- */

/* Tablet */
@media (max-width: 1200px) {
  .frame-427321817 {
    gap: 80px;
  }
  .hero {
    flex-direction: column;
    padding: 80px 16px 40px 16px;
    gap: 32px;
  }
  .hero-content, .hero-side {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .trusted-by {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .client-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .info-box {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .info-content {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
  }
  .services-section {
    padding: 60px 16px 40px 16px;
    /* gap: 40px; */
  }
  .services-header {
    padding: 0 16px;
  }
  .services-title {
    font-size: 36px;
  }
  .services-subtitle {
    font-size: 16px;
  }
  .services-cards-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .service-card {
    width: 100%;
    max-width: 386px;
  }
  .why-choose-section {
    flex-direction: column;
    padding: 60px 16px;
    gap: 32px;
  }
  .why-choose-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .why-choose-title {
    font-size: 32px;
  }
  .why-choose-list {
    gap: 20px;
  }
  .why-choose-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  .testimonials-section {
    padding: 60px 16px 80px 16px;
  }
  .testimonials-header {
    padding: 0 16px;
  }
  .testimonials-title {
    font-size: 32px;
  }
  .testimonials-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .testimonial-card {
    width: 100%;
    max-width: 400px;
  }
  .footer-section {
    padding: 0;
  }
  .footer-cta {
    flex-direction: column;
    gap: 24px;
    padding: 32px 16px;
    text-align: center;
    width: 95%;
    top: 0;
  }
  .footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0 24px 0;
    width: 95%;
  }
  .footer-about, .footer-contact {
    width: 100%;
    max-width: 400px;
    align-items: center;
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto;
  }
  .footer-socials {
    justify-content: center;
  }

   .projects, .recent-projects-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .project-cards, .recent-projects-grid, .ongoing-wrapper {
    gap: 16px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .frame-427321817 {
    gap: 24px;
  }
  .menu {
    padding: 20px 16px;
  }
  .logo img {
    width: 120px;
    height: 40px;
  }
  .navigation {
    gap: 20px;
    font-size: 15px;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    display: none;
    z-index: 99;
  }
  .navigation.open {
    display: flex;
  }
  .navigation a {
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: 18px;
  }
  .hamburger {
    display: flex;
  }
  .about {
    padding: 60px 16px;
  }
  .about-container {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .about-text, .about-images {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .about-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .about-paragraph {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 8px;
  }
  .about-image {
    width: 90vw;
    max-width: 320px;
    min-width: 160px;
    height: auto;
    margin: 0 auto 16px auto;
    border-radius: 16px;
  }
  .client-logos {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .client-logos img {
    width: 80vw;
    max-width: 220px;
    height: auto;
  }
  .reference-download {
    width: 95vw;
    max-width: 400px;
    height: 56px;
  }
  .ref-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px 0 0 20px;
    padding: 15px;
  }
  .ref-icon img {
    width: 28px;
    height: 28px;
  }
  .ref-button {
    width: calc(95vw - 56px);
    max-width: 344px;
    height: 56px;
    font-size: 18px;
    border-radius: 0 16px 16px 0;
    line-height: normal;
    padding: 15px;
    white-space: normal;
    overflow-wrap: anywhere;
    display: flex;
    align-items: center;
  }

   .projects {
    padding-top: 60px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .projects-heading {
    font-size: 2rem;
  }
  .projects-subheading {
    font-size: 1.1rem;
  }
  .project-cards, .recent-projects-grid, .ongoing-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .project-card, .ongoing-card, .recent-project-card {
    width: 100%;
    max-width: 340px;
    min-width: 0;
    margin-bottom: 16px;
  }
  .project-image img, .recent-project-card img {
    max-width: 100%;
  }

  .services-section {
    padding: 40px 16px;
  }
  .services-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .service-block,
  .service-block.reverse {
    flex-direction: column !important;
    gap: 24px;
    align-items: center;
    max-width: 98vw;
    margin: 0 auto 40px;
  }
  .service-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .service-image img {
    width: 90vw;
    max-width: 340px;
    height: auto;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .service-content {
    max-width: 100%;
    text-align: center;
    padding: 0 8px;
  }

  .service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .service-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Small Mobile */
@media (max-width: 600px) {
  .frame-427321817 {
    gap: 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .info-box {
    display: none;
  }
  .header {
    height: auto;
    position: static;
  }
  .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px;
  }
  .logo img {
    width: 100px;
    height: 35px;
  }
  .navigation {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: flex-start;
    font-size: 14px;
  }
  .navigation a {
    padding: 8px 0;
    width: 100%;
    display: block;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .services-title, .why-choose-title, .testimonials-title {
    font-size: 1.5rem;
  }
  .service-card h3, .why-choose-number, .testimonial-author {
    font-size: 1rem;
  }
  .why-choose-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .footer-cta-title {
    font-size: 1.2rem;
  }
  .footer-main {
    padding: 16px 0 16px 0;
  }
  .about-title {
    font-size: 1.4rem;
  }
  .about-paragraph {
    font-size: 0.95rem;
    padding: 0 4px;
  }
  .about-image {
    max-width: 260px;
    min-width: 120px;
  }
  .reference-download {
    max-width: 98vw;
    height: 48px;
  }
  .ref-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px 0 0 14px;
  }
  .ref-icon img {
    width: 22px;
    height: 22px;
  }
  .ref-button {
    width: calc(98vw - 48px);
    max-width: 220px;
    height: 48px;
    font-size: 15px;
    border-radius: 0 12px 12px 0;
    line-height: normal;
    padding-left: 8px;
    white-space: normal;
    overflow-wrap: anywhere;
    display: flex;
    align-items: center;
  }

  .projects-heading, .recent-projects-title, .ongoing-title {
    font-size: 1.2rem;
  }
  .project-card, .ongoing-card, .recent-project-card {
    padding: 12px;
    max-width: 98vw;
  }
  .project-image img, .recent-project-card img {
    border-radius: 8px;
  }

    .service-image img {
    width: 98vw;
    max-width: 98vw;
    border-radius: 10px;
  }
  .service-content h3 {
    font-size: 1.1rem;
  }
  .service-content p {
    font-size: 0.95rem;
  }
}

.reference-letters {
  background: #FFF0F1;
  padding-top: 80px;
  padding-bottom: 180px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.projects {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 70px;
  text-align: center;
}

.projects-heading {
  font-size: 50px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
  letter-spacing: -0.03em;
  color: #111111;
  margin-bottom: 10px;
}

.projects-subheading {
  font-size: 24px;
  color: #858585;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.project-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 972px;
  margin: 0 auto;
}

.project-card {
  width: 304px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-image img {
  width: 100%;
  height: 277px;
  margin-bottom: -8px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.project-title {
  background: #000;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 13px 10px;
  text-align: center;
  height: 58px;
}

.project-desc {
  background: #FFF0F1;
  color: #7D7D7D;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  padding: 16px;
  line-height: 1.4;
  text-align: center;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ongoing-projects {
  /* padding: 7px 20px 100px; */
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.ongoing-title {
  font-size: 24px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #858585;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  margin: 0;
}

.ongoing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 826px;
  padding: 0 59px;
}

.ongoing-card {
  background: #FFF0F1;
  border-radius: 20px;
  width: 339px;
  height: 161px;
  padding: 36px 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ongoing-text {
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}

.recent-projects-section {
  padding: 77px 20px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
}

.recent-projects-section .recent-projects-title {
  font-size: 24px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #858585;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  margin: 0;
  text-align: center;
}

.recent-projects-section .recent-projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1240px;
}

.recent-projects-section .recent-project-card {
  width: 304px;
  height: 161px;
  background: #FFF0F1;
  border-radius: 20px;
  padding: 10px 25px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.recent-projects-section .recent-project-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.recent-projects-section .recent-project-card p {
  font-size: 16px;
  font-weight: 400;
  color: #5c5c5c;
  margin: 0;
  line-height: 1.4;
}

.brand-section {
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 100px 0;
}

.brand-heading h2 {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 50px;
  line-height: 128%;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #111;
  margin-bottom: 10px;
}

.brand-heading p {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 24px;
  line-height: 128%;
  color: #858585;
  margin-top: 0;
}



.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  max-width: 200px;
}

.brand-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.brand-section {
  text-align: center;
  padding-top: 160px;
  padding-bottom: 20px;
}

.brand-section.bar-equipment {
  background-color: #fff;
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #858585;
  margin-bottom: 40px;
}

.brand-logos {
  padding-top: 0px;
   padding-bottom: 160px;
  display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 10px;
}

.logo-box img {
  max-height: 60px;
  max-width: 200px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .service-block{
    flex-direction: column !important;
    gap: 24px;
    align-items: center;
    max-width: 98vw;
    margin: 0 auto 40px;
  }

  .service-block.reverse {
    flex-direction: column-reverse !important;
    gap: 24px;
    align-items: center;
    max-width: 98vw;
    margin: 0 auto 40px;
  }
  .service-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .service-image img {
    width: 90vw;
    max-width: 340px;
    height: auto;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .service-content {
    max-width: 100%;
    text-align: center;
    padding: 0 8px;
  }
}
/* Contact Section Styles */
.contact-section {
  background: #fff;
  padding: 80px 16px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  /* background: #f9f9f9; */
  border-radius: 24px;
  /* box-shadow: 0 2px 16px rgba(0,0,0,0.06); */
  padding: 40px;
}

.contact-info {
  flex: 1;
  min-width: 260px;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ED1C24;
}

.contact-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 24px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-form {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ED1C24;
  outline: none;
}

.contact-form button {
  background: #ED1C24;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #c4161c;
}

/* Responsive */
@media (max-width: 700px) {
  .contact-container {
    flex-direction: column;
    gap: 32px;
    padding: 24px;
  }
  .contact-info h2 {
    font-size: 1.5rem;
  }
}

/* --- Gallery Modal Styles --- */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s;
}

.gallery-modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(237,28,36,0.15);
  background: #fff;
  object-fit: contain;
  transition: box-shadow 0.2s;
}

.gallery-modal-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 3rem;
  color: #fff;
  background: rgba(237,28,36,0.8);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s, color 0.2s;
}
.gallery-modal-close:hover {
  background: #ED1C24;
  color: #fff;
}

@media (max-width: 900px) {
  .gallery-modal-content {
    max-width: 98vw;
    max-height: 60vh;
  }
  .gallery-modal-close {
    top: 16px;
    right: 16px;
    font-size: 2.2rem;
    width: 38px;
    height: 38px;
  }
}

/* --- Gallery Section Styles --- */
.gallery-section {
  background: #fff;
  padding: 180px 16px;
}

.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ED1C24;
  margin-bottom: 32px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(237,28,36,0.15);
}

@media (max-width: 900px) {
  .gallery-section {
    padding: 80px 16px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gallery-grid img {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 40px 16px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-grid img {
    height: 120px;
  }
}