body {
  background-color: #FDF8F4;
  font-family: 'Inter', sans-serif;  /* Apply Inter globally */

}

html {
  scroll-behavior: smooth;
}

.navbar-custom {
  background-color: transparent;
  padding: 1rem 2rem;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.nav-menu {
  background-color: #fff;
  border-radius: 50px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: #000 !important;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.nav-menu .nav-link:hover {
  color: #EC5D2A !important;
}

.login-btn {
  background-color: #EC5D2A;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 1rem;
  }

  .nav-menu {
    background-color: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
  }

  .login-btn {
    padding: 0.6rem 1.8rem;
    font-size: 11px;
    align-self: flex-start;
  }

  /* Mobile top bar layout */
  .mobile-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .mobile-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-custom {
    padding: 0.8rem;
  }

  .login-btn {
    padding: 0.5rem 1.5rem;
    font-size: 10px;
  }

  .dropdown-toggle {
    font-size: 12px;
    padding: 0.25rem 0.5rem;
  }
}

.personalized-section {
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.personalized-section .head1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
}

.personalized-section .head2 {
  font-size: 33px;
  font-weight: 100;
  color: #999999;
}

.image-section {
  position: relative;
}

/* Background rounded block */
.bg-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 70%;
  background: #F7CACA;
  border-radius: 20px;
  z-index: 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  z-index: 1;
}

.img-box {
  border-radius: 15px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.img-box.top {
  grid-column: span 2;
  justify-self: center;
  width: 60%;
}

.img-box.bottom-left,
.img-box.bottom-right {
  width: 100%;
}

.image3 {
  margin-top: -140px;
}

.brand_text {
  color: #6F6F6F;
}

.brand-logos {
  display: flex;
  justify-content: center;
  gap: 65px;
  flex-wrap: wrap;
}

.brand-logos img {
  height: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .image-section {
    padding: 2rem 0 !important;
  }

  .bg-block {
    width: 95%;
    height: 60%;
    border-radius: 15px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.5rem;
  }

  .img-box.top {
    grid-column: span 1;
    width: 80%;
    justify-self: center;
  }

  .img-box.bottom-left,
  .img-box.bottom-right {
    width: 90%;
    justify-self: center;
  }

  .image3 {
    margin-top: 0;
  }

  .brand-logos {
    gap: 30px;
    padding: 0 1.5rem;
  }

  .brand-logos img {
    height: 30px;
    max-width: 80px;
  }
}

@media (max-width: 576px) {
  .bg-block {
    width: 98%;
    height: 50%;
    border-radius: 12px;
  }

  .image-grid {
    gap: 0.8rem;
    padding: 0 0.5rem;
  }

  .img-box.top {
    width: 90%;
  }

  .img-box.bottom-left,
  .img-box.bottom-right {
    width: 95%;
  }

  .img-box {
    border-radius: 12px;
  }

  .brand-logos {
    gap: 20px;
    justify-content: space-around;
  }

  .brand-logos img {
    height: 25px;
    max-width: 70px;
  }
}

.why_heading{
  font-size:50px;
}

.why_content{
  color:#6F6F6F
}

.benefits .title{
  font-size:48px;
  line-height:1.2;
}




/* Responsive tweaks */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
  .img-box.top {
    width: 100%;
    grid-column: span 1;
  }

  .image3{
    margin-top:0px;
  }

  .personalized-section .head1 {
    font-size: 62px;
    font-weight: 500;
  }

  .personalized-section .head2 {
    font-size: 28px;
    font-weight: 100;
    color: #999999;
  }

  .benefits .title{
    font-size:28px;
    line-height:1.2;
  }

  .why_heading{
    font-size:30px;
  }

  .why_content{
    font-size:12px;
    margin-left:20px;
    padding: 0 1.5rem;
    margin-right:20px;
    display:block;
  }

}

/* Benefit Cards Style */
.benefit-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(17, 17, 17, 0.07);
  height: 100%; /* Ensures all cards in a row have the same height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1);
}

.hero_image {
  margin-top: 5rem;
}


/* Eyebrow & Title */
.solutions-eyebrow{
  color:#EC5D2A;
  text-transform:uppercase;
  font-weight:600;
  font-size:14px;
}
.solutions-title{
  font-size:56px;
  line-height:1.1;
  font-weight:600;
}
.solutions-sub{
  color:#6F6F6F;
  max-width:860px;
  font-size:15px;
}

/* Big wrapper */
.solutions-wrapper{
  background:#fff;
  border-radius:20px;
  padding:50px 40px;
  position:relative;
  box-shadow:0 12px 28px rgba(17,17,17,.06);
}
.solutions-wrapper::after{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  bottom:-14px;
  height:16px;
  background:#F7DAD3;   /* soft peach shadow base */
  border-radius:14px;
  z-index:-1;
}

/* Inside headings & text */
.solution-h{
  color:#EC5D2A;
  font-weight:600;
  font-size:24px;
}
.solution-p{
  color:#6F6F6F;
  font-size:14px;
}
.solution-lead{
  font-weight:600;
  font-size:14px;
  margin-bottom:8px;
}

/* Orange bullets */
.solution-list{
  margin:0;
  padding-left:1.2rem;
  font-size:14px;
  color:#6F6F6F;
}
.solution-list li::marker{ color:#EC5D2A; }

/* Square image */
.solution-img{
  border-radius:16px;
  overflow:hidden;
  width:100%;
  aspect-ratio:1/1;
}
.solution-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Responsive */
@media (max-width:991.98px){
  .solutions-title{ font-size:40px; }
  .solutions-wrapper{ padding:30px 20px; }
}


.white-section {
  padding: 4rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  color: #e63946;
  /* font-weight: 600; */
  margin-bottom: 0.5rem;
  font-size:20px;
}

.section-title {
  font-size: 3rem;
  /* font-weight: 700; */
  margin-bottom: 1rem;
}

.highlight-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: #555;
  margin-bottom: 2rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(17, 17, 17, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1);
}

.number {
  /* font-weight: 700; */
  font-size: 1.2rem;
  color: #333;
}

.feature-title {
  color: #e63946;
  /* font-weight: 600; */
  font-size:20px;
  margin-bottom: 0.25rem;
}

.feature-text {
  color: #555;
  font-size: 0.95rem;
}

/* Bottom part */
.bottom-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.image-side img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-side .quote {
  font-style: italic;
  font-size:30px;
  color: #222;
  margin-bottom: 1.5rem;
}

.text-side .author {
  font-weight: 600;
  color: #222;
}

.text-side .role {
  color: #ec5d2a;
  /* font-weight: 600; */
  font-size:30px;
}

/* Responsive */
@media (max-width: 768px) {
  .bottom-block {
    grid-template-columns: 1fr;
  }

  .text-side .quote{
    font-size:19px;
  }

  .text-side .role{
    font-size:19px;
  }
}
/* Case Studies Wrapper - NEW */
.case-studies-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.case-studies-container {
  display: flex;
  transition: transform 0.5s ease;
  width: 400%; /* 4 case studies = 400% */
}

.case-study-set {
  width: 25%; /* Each set takes 1/4 of container */
  flex-shrink: 0;
}

/* Your existing CSS */
.case-studies {
  background: #fcefe9; /* light peach */
  padding: 60px 80px;
  border-radius: 12px;
}

.case-studies .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.case-content {
  flex: 1;
  max-width: 350px;
}

/* Case studies header with navigation buttons */
.case-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.case-nav-buttons {
  display: flex;
  gap: 8px;
}

.nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.nav-btn:hover {
  background-color: #f5f5f5;
  border-color: #bbb;
}

.nav-btn.active {
  background-color: white;
  color: black;
  border-color: #333;
}

.case-title {
  color: #e46c42;
  font-size: 18px;
  margin: 0;
}

.case-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.services-list li {
  font-size: 16px;
  margin-bottom: 8px;
}

/* Image area */
.case-images {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-slider {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 12px;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  width: 300%; /* 3 slides = 300% */
}

.slide {
  width: 33.333%; /* Each slide takes 1/3 of container */
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: auto; /* Changed from fixed height to auto to show full image */
  object-fit: contain; /* Changed from cover to contain to show whole image */
  border-radius: 12px;
  max-height: 400px; /* Optional: set max height if needed */
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .case-studies {

    padding: 40px 1.5rem;
    gap: 30px;
    text-align: left;
  }

  .case-content {
    max-width: 100%;
    order: 2;
  }

  .case-studies .container {
    flex-direction: column;
  }

  .case-header {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
  }

  .case-subtitle {
    font-size: 16px;
  }

  .case-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .services-title {
    font-size: 18px;
  }

  .services-list li {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .case-images {
    order: 1;
    width: 100%;
  }

  .slide img {
    max-height: 280px;
  }

  .nav-btn {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

}

@media (max-width: 576px) {
  .case-studies {
    padding: 30px 20px;
    gap: 25px;
  }

  .case-header {
    gap: 10px;
  }

  .slide img {
    max-height: 220px;
  }

  .nav-btn {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
}

/* About Company Section */
.about-company {
  padding: 20px 0 60px; /* Reduced top padding from 60px to 20px */
}

.about-company .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.about-company .company-content {
  flex: 1;
  max-width: 100%;
}

.about-company .company-content .section-title {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: #000;
}

.about-company .company-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

/* Results List (2 columns) */
.about-company .results-list {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two per row */
  gap: 20px 30px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.about-company .results-list li {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.about-company .results-list li span {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35; /* orange */
  margin-right: 8px;
}

/* Right Side Images (Card + Background) */
.company-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22%;
}

.company-images .image-wrapper {
  position: relative;
  width: 360px;
  height: auto;
}

.company-images .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 2;
}

.company-images .bg-img {
  position: absolute;
  top: 40px;
  left: 140px;
  width: 280px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  z-index: 1;
}

.section-title {
  font-size: 2rem;
  /* font-weight: 700; */
  margin-bottom: 1rem;
}

.top-block {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/* Responsive */
@media (max-width: 900px) {
  .about-company .container {
    flex-direction: column;
  }

  .company-images {
    margin-top: 40px;
  }

  .company-images .image-wrapper {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .company-images .card-img {
    width: 180px;
  }

  .company-images .bg-img {
    width: 240px;
    left: 100px;
    top: 30px;
  }

  .about-company .results-list {
    grid-template-columns: 1fr; /* stack on small screens */
  }
}

/* New styles for result cards */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 30px;
}

.result-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(17, 17, 17, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left; /* Align text to the left inside the card */
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1);
}

.result-card .result-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35; /* orange */
  display: block;
  margin-bottom: 0.5rem;
}

.result-card .result-text {
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

/* Footer Styles */
.site-footer {
  background-color: #2d2624;
  color: #a9a9a9;
  padding: 4rem 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.footer-nav li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
}

.footer-nav li a:hover {
  color: #ff6b35; /* orange hover */
}
.footer-logo {
  height: 35px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2.5rem;
}

.footer-image-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-image-container img {
  height: 50px;
  opacity: 0.7;
}

.footer-text-block {
  font-size: 0.85rem;
  color: #888;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1.5rem;
  }

  .benefits,
  .solutions-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about-company {
    padding: 30px 1.5rem 60px; /* Reduced top padding for mobile */
  }
}

/* Scroll Fade-in Animation */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Desktop styles (existing) */
.solutions-title {
  font-size: 48px;
  line-height: 1.2;
}

.solutions-description {
  max-width: 850px;
  font-size: 15px;
}

.solution-block {
  display: flex;
  align-items: stretch;
  transition: transform 0.3s ease;
}

.solution-block:hover {
  transform: translateY(-5px);
}

.solution-block-reverse {
  flex-direction: row-reverse;
}

.solution-text {
  flex-grow: 1;
  padding: 1.5rem 3rem;
}

.solution-shadow-left {
  box-shadow: rgb(210 15 15 / 30%) -10px 10px 6px;
}

.solution-shadow-right {
  box-shadow: rgb(210 15 15 / 30%) 10.95px 10.95px 2.6px;
}

.solution-image {
  flex-shrink: 0;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .solutions-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .solutions-description {
    font-size: 14px;
    max-width: 100%;
  }

  .solution-block,
  .solution-block-reverse {
    flex-direction: column;
    align-items: center;
  }

  .solution-text {
    padding: 1.5rem;
    order: 2;
    width: 100%;
  }

  .solution-shadow-left,
  .solution-shadow-right {
    box-shadow: rgb(210 15 15 / 30%) 0px 8px 6px;
  }

  .solution-image {
    order: 1;
    width: 100%;
    margin-bottom: 1rem;
  }

  .solution-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }

  .connect-section{
    margin-top: 4rem; /* Reduced from 60% */
  }

}

@media (max-width: 576px) {
  .solutions-title {
    font-size: 28px;
  }

  .solutions-description {
    font-size: 13px;
  }

  .solution-text {
    padding: 1rem;
  }

  .solution-text h4 {
    font-size: 1.1rem;
  }

  .solution-image img {
    max-height: 180px;
  }
}
@media (min-width: 1920px) {
  .main-container {
    max-width: 1920px; /* O el ancho máximo que prefieras, ej: 1600px */
    margin-left: auto;
    margin-right: auto;
    /* Opcional: añade un poco de padding a los lados si es necesario */
    /* padding: 0 2rem; */
  }
}
