/* VisionFrame.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

.mulish {
    font-family: 'Mulish';
    font-optical-sizing: auto;
    font-weight: 700; /* Change this to desired weight */
    font-style: normal;
  }
  .playfair-display {
    font-family: 'Playfair Display', serif;
    font-optical-sizing: auto;
    font-weight: 900; /* Change this to the desired weight */
    font-style: normal;
  }
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
}
html, body {
    overflow-x: auto;  /* Allow horizontal scrolling */
    overflow-y: unset !important; 
    height: 100vh; /* Ensure full viewport height */
    width: 100vw; /* Ensure full viewport width */
    margin: 0;
    padding: 0;
  }

.customservice4-container {
  min-height: 100vh;
  overflow: hidden;
}

/* Left Section Styles */
.customservice4-left-section {
  background-color: var(--light-bg);
  padding: 2rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.customservice4-logo-container {
    margin-bottom: 2rem;
  }
  
  .customservice4-logo {
    max-height: 40px;
    width: auto;
  }

.customservice4-content-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 50px;
}

.customservice4-main-heading {
  color: #575718;
  font-size: 2.5rem;
  /* margin-bottom: 2rem; */
  line-height: 1.2;

}

.customservice4-heading-underline {
  width: 100px;
  height: 4px;
  background-color: #E31E24;
  margin-top: 1rem;
}

.customservice4-illustration-container {
  position: relative;
  margin-top: 20px;
}

.customservice4-illustration-image {
  max-width: 60%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.customservice4-handwritten-text {
  font-family: 'Playfair Display';
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-style: italic;
}



.customservice4-highlight {
  color: #E31E24;
}

/* Right Section Styles */
.customservice4-right-section {
  background-color: white;
  padding: 2rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.customservice4-services-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary-green);
}

.customservice4-circle-icon {
  color: #E31E24;
  margin-left: 5px;
}

.customservice4-right-content {
  margin-top: 5rem;
  padding: 1rem;
  max-width: 550px;
}

.customservice4-right-title {
  font-family: 'Playfair Display', serif;
  color: #E31E24;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.customservice4-right-subtitle {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.customservice4-description-block {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.customservice4-features-list {
  list-style-type: none;
  padding-left: 1rem;
}

.customservice4-features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.customservice4-features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #E31E24;
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .customservice4-left-section, .customservice4-right-section {
    min-height: auto;
    padding: 3rem 2rem;
  }
  
  .customservice4-right-content {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .customservice4-main-heading {
    font-size: 2rem;
  }
  
  .customservice4-right-section {
    padding-top: 4rem;
  }
  
  .customservice4-services-badge {
    top: 1rem;
    right: 1rem;
  }
}
@media (max-width:768px) {
    .customservice4-illustration-image {
        max-width: 80%;
    }
 
    
}

@media (max-width: 576px) {
  .customservice4-handwritten-text {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
    display: inline-block;
  }
  
  .customservice4-features-list li {
    font-size: 0.9rem;
  }
}
@media (max-width:425px) {
    .customservice4-services-badge{
        right: unset;
        font-size: 20px;
    }
    .customservice4-illustration-image {
        max-width: 92%;
        margin-left: -28px;
    }
    .customservice4-main-heading {
        font-size: 20px;
    }
    .customservice4-features-list li {
        font-size: 12px;
    }
    p.mulish.service1p {
        font-size: 12px;
    }
    .customservice4-right-subtitle {
        font-size: 15px;
        margin-bottom: 2rem;
    }
    .customservice4-right-title {
        font-size: 20px;
    }
    
}