/* Partners Section */
.readydesign-partners-section {
  position: relative;
  width: 100%;
  height: max-content;
  padding: 100px 0;
  background-color: #121212;
  color: #ffffff;
  overflow: hidden;
}

/* Architectural Grid Pattern */
.readydesign-partners-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%),
                    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.readydesign-partners-container {
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 5;
}

/* Main Headline */
.readydesign-partners-headline {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.readydesign-partners-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.readydesign-partners-title-accent {
  width: 60px;
  height: 2px;
  background-color: #a7c0e5;
  margin: 0 auto;
  position: relative;
}

/* Content Grid */
.readydesign-partners-content {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

/* Left Column Text */
.readydesign-partners-text {
  flex: 1;
  text-align: right;
  padding-right: 20px;
}

.readydesign-partners-description {
  margin-bottom: 30px;
}

.readydesign-partners-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.readydesign-partners-paragraph:hover {
  color: #ffffff;
  transform: translateX(-10px);
}

.readydesign-highlight {
  color: #a7c0e5;
  position: relative;
  display: inline-block;
}

.readydesign-partners-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  transition: color 0.3s ease;
  border-right: 2px solid #a7c0e5;
  padding-right: 15px;
}

.readydesign-partners-tagline:hover {
  color: #ffffff;
}

.readydesign-partners-tagline em {
  font-style: italic;
}

.readydesign-partners-tagline sup {
  font-size: 0.6rem;
  vertical-align: super;
}

/* Right Column - Partners Display */
.readydesign-partners-display {
  flex: 1.5;
  position: relative;
}

.readydesign-partners-blueprint {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 1px solid rgba(167, 192, 229, 0.2);
  pointer-events: none;
  z-index: 1;
}

/* Partners Carousel */
.readydesign-partners-carousel {
  position: relative;
  background-color: rgb(66, 66, 66, 0.7);
  border: 1px solid rgba(167, 192, 229, 0.1);
  padding: 30px;
  z-index: 2;
}

.readydesign-carousel-container {
  overflow: hidden;
  margin-bottom: 30px;
}

.readydesign-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.readydesign-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.readydesign-partner-item {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.readydesign-partner-item:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 192, 229, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.readydesign-partner-logo {
  max-width: 100%;
  max-height: 40px;
  margin-bottom: 15px;
  filter: grayscale(100%) brightness(1.5) opacity(0.7);
  transition: filter 0.3s ease;
}

.readydesign-partner-item:hover .readydesign-partner-logo {
  filter: grayscale(0%) brightness(1) opacity(1);
}

.readydesign-partner-name {
  font-size: 0.9rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3px;
}

.readydesign-partner-duration {
  font-size: 0.8rem;
  color: rgba(167, 192, 229, 0.7);
  text-align: center;
}

/* Carousel Controls */
.readydesign-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(167, 192, 229, 0.1);
  padding-top: 20px;
}

.readydesign-carousel-prev,
.readydesign-carousel-next {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.readydesign-carousel-prev:hover,
.readydesign-carousel-next:hover {
  background-color: rgba(167, 192, 229, 0.1);
  color: #ffffff;
  border-color: #a7c0e5;
}

.readydesign-carousel-indicators {
  display: flex;
  gap: 8px;
}

.readydesign-carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.readydesign-carousel-indicator.active {
  background-color: #a7c0e5;
}

/* View More Button */
.readydesign-partners-more {
  text-align: center;
}

.readydesign-more-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.readydesign-more-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a7c0e5;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.readydesign-more-button:hover {
  color: #121212;
  border-color: #a7c0e5;
}

.readydesign-more-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.readydesign-more-button-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.readydesign-more-button:hover .readydesign-more-button-icon {
  transform: translateX(5px);
}

/* Responsive Styles */
@media screen and (max-width: 1600px) {
  .readydesign-partners-content {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .readydesign-partners-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 992px) {
    
  .readydesign-partners-text {
    text-align: center;
    padding-right: 0;
  }

  .readydesign-partners-paragraph:hover {
    transform: translateY(-5px);
  }

  .readydesign-partners-tagline {
    border-right: none;
    border-bottom: 2px solid #a7c0e5;
    padding-right: 0;
    padding-bottom: 15px;
    display: inline-block;
  }

  .readydesign-carousel-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .readydesign-partners-section {
    padding: 70px 0;
  }

  .readydesign-partners-title {
    font-size: 1.8rem;
  }

  .readydesign-carousel-slide {
    grid-template-columns: 1fr;
  }

  .readydesign-partners-carousel {
    padding: 20px;
  }
}




.rdesignp-philosophy-section {
  position: relative;
  width: 100%;
  height: max-content;
  padding: 120px 0;
  background-color: #0c0c0c;
  overflow: hidden;
}


/* Main Container */
.rdesignp-philosophy-container {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 2;
}

/* Background Architectural Elements */
.rdesignp-arch-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.rdesignp-arch-element-1 {
  top: -80px;
  right: 5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(41, 121, 255, 0.3);
  transform: rotate(30deg) skew(10deg);
  animation: floatElement1 25s infinite alternate ease-in-out;
}

.rdesignp-arch-element-2 {
  bottom: -100px;
  left: 8%;
  width: 350px;
  height: 350px;
  border-left: 2px solid rgba(41, 121, 255, 0.3);
  border-bottom: 2px solid rgba(41, 121, 255, 0.3);
  transform: rotate(-15deg);
  animation: floatElement2 30s infinite alternate-reverse ease-in-out;
}

.rdesignp-arch-element-3 {
  top: 30%;
  left: -150px;
  width: 300px;
  height: 300px;
  border-top: 1px solid rgba(41, 121, 255, 0.4);
  border-right: 1px solid rgba(41, 121, 255, 0.4);
  transform: rotate(45deg);
  animation: floatElement3 35s infinite alternate ease-in-out;
}

.rdesignp-arch-element-4 {
  top: 10%;
  right: -100px;
  width: 250px;
  height: 1px;
  background: linear-gradient(90deg, 
      rgba(41, 121, 255, 0), 
      rgba(41, 121, 255, 0.6), 
      rgba(41, 121, 255, 0));
  transform: rotate(-60deg);
}

.rdesignp-arch-element-5 {
  bottom: 25%;
  right: 15%;
  width: 150px;
  height: 150px;
  border-right: 1px solid rgba(41, 121, 255, 0.4);
  border-bottom: 1px solid rgba(41, 121, 255, 0.4);
  transform: rotate(-15deg);
  animation: floatElement4 20s infinite alternate ease-in-out;
}

.rdesignp-arch-element-6 {
  bottom: 5%;
  left: 25%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, 
      rgba(41, 121, 255, 0), 
      rgba(41, 121, 255, 0.6), 
      rgba(41, 121, 255, 0));
  transform: rotate(30deg);
}

@keyframes floatElement1 {
  0% { transform: rotate(30deg) skew(10deg) translateY(0); }
  50% { transform: rotate(32deg) skew(12deg) translateY(-10px); }
  100% { transform: rotate(28deg) skew(8deg) translateY(10px); }
}

@keyframes floatElement2 {
  0% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-18deg) translateY(15px); }
  100% { transform: rotate(-12deg) translateY(-15px); }
}

@keyframes floatElement3 {
  0% { transform: rotate(45deg) translateX(0); }
  50% { transform: rotate(42deg) translateX(10px); }
  100% { transform: rotate(48deg) translateX(-10px); }
}

@keyframes floatElement4 {
  0% { transform: rotate(-15deg) scale(1); }
  50% { transform: rotate(-10deg) scale(1.05); }
  100% { transform: rotate(-20deg) scale(0.95); }
}

/* Header with Title */
.rdesignp-philosophy-header {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 30px;
  text-align: center;
}

/* Unique Floor Plan Decorator */
.rdesignp-floor-plan-decorator {
  position: absolute;
  width: 200px;
  height: 200px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: none;
}

.rdesignp-floor-plan-line {
  position: absolute;
  background-color: rgba(41, 121, 255, 0.4);
}

.rdesignp-floor-line-1 {
  top: 20%;
  left: 10%;
  width: 80%;
  height: 1px;
}

.rdesignp-floor-line-2 {
  top: 40%;
  left: 10%;
  width: 80%;
  height: 1px;
}

.rdesignp-floor-line-3 {
  top: 60%;
  left: 10%;
  width: 80%;
  height: 1px;
}

.rdesignp-floor-line-4 {
  top: 80%;
  left: 10%;
  width: 80%;
  height: 1px;
}

.rdesignp-floor-line-5 {
  top: 10%;
  left: 20%;
  width: 1px;
  height: 80%;
}

.rdesignp-floor-line-6 {
  top: 10%;
  left: 40%;
  width: 1px;
  height: 80%;
}

.rdesignp-floor-line-7 {
  top: 10%;
  left: 60%;
  width: 1px;
  height: 80%;
}

.rdesignp-floor-line-8 {
  top: 10%;
  left: 80%;
  width: 1px;
  height: 80%;
}

.rdesignp-floor-room {
  position: absolute;
  border: 1px solid rgba(41, 121, 255, 0.6);
}

.rdesignp-floor-room-1 {
  top: 15%;
  left: 15%;
  width: 20%;
  height: 20%;
}

.rdesignp-floor-room-2 {
  top: 65%;
  left: 65%;
  width: 20%;
  height: 20%;
}

/* Title Styling */
.rdesignp-philosophy-title-wrapper {
  position: relative;
  display: inline-block;
}

.rdesignp-philosophy-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.rdesignp-title-decorator {
  position: absolute;
  opacity: 0.6;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-title-decorator-1 {
  top: 0;
  left: -20px;
  width: 40px;
  height: 40px;
  border-top: 2px solid rgba(41, 121, 255, 0.8);
  border-left: 2px solid rgba(41, 121, 255, 0.8);
}

.rdesignp-title-decorator-2 {
  bottom: 0;
  right: -20px;
  width: 40px;
  height: 40px;
  border-right: 2px solid rgba(41, 121, 255, 0.8);
  border-bottom: 2px solid rgba(41, 121, 255, 0.8);
}

.rdesignp-philosophy-title-wrapper:hover .rdesignp-title-decorator-1 {
  transform: translate(-5px, -5px);
  opacity: 0.8;
}

.rdesignp-philosophy-title-wrapper:hover .rdesignp-title-decorator-2 {
  transform: translate(5px, 5px);
  opacity: 0.8;
}

.rdesignp-philosophy-title-wrapper:hover .rdesignp-philosophy-title {
  letter-spacing: -0.3px;
}

.rdesignp-title-underline {
  position: relative;
  width: 100px;
  height: 2px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, 
      rgba(41, 121, 255, 0.2), 
      rgba(41, 121, 255, 0.8), 
      rgba(41, 121, 255, 0.2));
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-philosophy-title-wrapper:hover .rdesignp-title-underline {
  width: 150px;
}

/* Main Content */
.rdesignp-philosophy-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Unique Masonry-style Text Blocks */
.rdesignp-text-masonry {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.rdesignp-text-block {
  position: relative;
  background-color: rgba(15, 15, 15, 0.7);
  padding: 40px;
  border: 1px solid rgba(41, 121, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  overflow: hidden;
}

.rdesignp-text-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(41, 121, 255, 0.1) 0%, rgba(41, 121, 255, 0) 70%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-text-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(41, 121, 255, 0.3);
}

.rdesignp-text-block:hover::before {
  opacity: 0.8;
}

/* Block Sizes for Masonry Effect */
.rdesignp-text-block-large {
  flex: 0 0 calc(60% - 15px);
}

.rdesignp-text-block-small {
  flex: 0 0 calc(40% - 15px);
}

.rdesignp-text-block-full {
  flex: 0 0 100%;
}

/* Block Decorator Elements */
.rdesignp-block-decorator {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.rdesignp-block-corner {
  width: 30px;
  height: 30px;
  border-style: solid;
  border-color: rgba(41, 121, 255, 0.3);
  border-width: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-corner-top-left {
  top: 10px;
  left: 10px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.rdesignp-corner-top-right {
  top: 10px;
  right: 10px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.rdesignp-corner-bottom-left {
  bottom: 10px;
  left: 10px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.rdesignp-corner-bottom-right {
  bottom: 10px;
  right: 10px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.rdesignp-text-block:hover .rdesignp-block-corner {
  width: 40px;
  height: 40px;
  border-color: rgba(41, 121, 255, 0.7);
}

/* Block Number */
.rdesignp-block-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 3rem;
  font-weight: 200;
  color: rgba(41, 121, 255, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
}

.rdesignp-text-block:hover .rdesignp-block-number {
  color: rgba(41, 121, 255, 0.4);
  transform: scale(1.1);
}

/* Text Styling */
.rdesignp-block-heading {
  position: relative;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 25px;
  padding-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
}

.rdesignp-block-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: rgba(41, 121, 255, 0.5);
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-text-block:hover .rdesignp-block-heading {
  color: #ffffff;
}

.rdesignp-text-block:hover .rdesignp-block-heading::after {
  width: 80px;
  background-color: rgba(41, 121, 255, 0.8);
}

.rdesignp-block-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  position: relative;
  transition: all 0.4s ease;
}

.rdesignp-text-block:hover .rdesignp-block-text {
  color: rgba(255, 255, 255, 0.95);
}

.rdesignp-highlight {
  color: rgba(41, 121, 255, 0.8);
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.rdesignp-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgba(41, 121, 255, 0.5);
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-highlight:hover {
  color: rgba(41, 121, 255, 1);
}

.rdesignp-highlight:hover::after {
  width: 100%;
}

/* Call to Action Button */
.rdesignp-philosophy-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
}

.rdesignp-cta-button-wrapper {
  position: relative;
  display: inline-block;
}

.rdesignp-cta-button-frame {
  position: absolute;
  width: 230px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(41, 121, 255, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-cta-button-wrapper:hover .rdesignp-cta-button-frame {
  width: 260px;
  height: 100px;
  opacity: 0.5;
}

.rdesignp-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: transparent;
  border: 1px solid rgba(41, 121, 255, 0.4);
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.rdesignp-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(41, 121, 255, 0.2);
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.rdesignp-cta-button:hover {
  border-color: rgba(41, 121, 255, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rdesignp-cta-button:hover::before {
  width: 100%;
}

.rdesignp-cta-icon {
  margin-left: 15px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-cta-button:hover .rdesignp-cta-icon {
  transform: translateX(8px);
}

/* Feature Cards - Hidden at first */
.rdesignp-philosophy-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 80px;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-philosophy-features.show {
  opacity: 1;
  transform: translateY(0);
}

.rdesignp-feature-card {
  flex: 1 0 calc(33.33% - 20px);
  min-width: 250px;
  position: relative;
  padding: 35px 25px;
  background-color: rgba(15, 15, 15, 0.5);
  border: 1px solid rgba(41, 121, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.rdesignp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: rgba(41, 121, 255, 0.4);
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
}

.rdesignp-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(41, 121, 255, 0.3);
}

.rdesignp-feature-card:hover::before {
  width: 100%;
  background-color: rgba(41, 121, 255, 0.1);
}

.rdesignp-feature-content {
  position: relative;
  z-index: 1;
}

.rdesignp-feature-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
}

.rdesignp-feature-icon-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(41, 121, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-feature-card:hover .rdesignp-feature-icon-frame {
  transform: rotate(45deg);
  border-color: rgba(41, 121, 255, 0.7);
}

.rdesignp-feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(41, 121, 255, 0.7);
  font-size: 1.6rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rdesignp-feature-card:hover .rdesignp-feature-icon {
  color: rgba(41, 121, 255, 1);
  transform: translate(-50%, -50%) scale(1.2);
}

.rdesignp-feature-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
}

.rdesignp-feature-card:hover .rdesignp-feature-title {
  color: #ffffff;
}

.rdesignp-feature-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease;
}

.rdesignp-feature-card:hover .rdesignp-feature-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .rdesignp-text-block-large,
  .rdesignp-text-block-small {
      flex: 0 0 100%;
  }

  .rdesignp-philosophy-features {
      justify-content: center;
  }

  .rdesignp-feature-card {
      flex: 0 0 calc(50% - 15px);
  }
}

@media screen and (max-width: 992px) {
  .rdesignp-philosophy-section {
      padding: 100px 0;
  }

  .rdesignp-philosophy-title {
      font-size: 2.5rem;
  }

  .rdesignp-block-heading {
      font-size: 1.3rem;
  }

  .rdesignp-block-text {
      font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .rdesignp-philosophy-section {
      padding: 80px 0;
  }

  .rdesignp-philosophy-title {
      font-size: 2.2rem;
  }

  .rdesignp-text-block {
      padding: 30px;
  }

  .rdesignp-feature-card {
      flex: 0 0 100%;
  }
}

@media screen and (max-width: 576px) {
  .rdesignp-philosophy-section {
      padding: 60px 0;
  }

  .rdesignp-philosophy-title {
      font-size: 1.8rem;
  }

  .rdesignp-block-heading {
      font-size: 1.2rem;
  }

  .rdesignp-cta-button {
      width: 100%;
  }
}





/* Contact Section Styles */
.readydesign-contact-section {
  position: relative;
  width: 100%;
  background-color: #121212;
  color: #ffffff;
    overflow-y: hidden;
}

.readydesign-contact-wrapper {
  display: flex;
  width: 100%;
}

/* Image Side */
.readydesign-contact-media {
  flex: 1;
  min-width: 50%;
  position: relative;
  overflow: hidden;
}

.readydesign-contact-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.readydesign-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.readydesign-contact-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.2) 100%);
  pointer-events: none;
}

/* Form Side */
.readydesign-contact-form-container {
  flex: 1;
  min-width: 50%;
  display: flex;
  align-items: center;
  padding: 80px 80px 80px 60px;
  position: relative;
}

.readydesign-contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(167, 192, 229, 0) 0%, 
    rgba(167, 192, 229, 0.2) 20%, 
    rgba(167, 192, 229, 0.2) 80%, 
    rgba(167, 192, 229, 0) 100%);
}

.readydesign-contact-content {
  width: 100%;
  max-width: 600px;
}

.readydesign-contact-header {
  margin-bottom: 40px;
  position: relative;
}

.readydesign-contact-title {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.readydesign-contact-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: #a7c0e5;
  position: relative;
  display: inline-block;
}

.readydesign-contact-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(167, 192, 229, 0.3);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.readydesign-contact-header:hover .readydesign-contact-subtitle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.readydesign-contact-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

/* Form Elements */
.readydesign-contact-form {
  width: 100%;
}

.readydesign-form-field {
  position: relative;
  margin-bottom: 35px;
}

.readydesign-form-input {
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  color: #ffffff;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  transition: border-color 0.3s ease;
}

.readydesign-form-input:focus {
  border-color: #a7c0e5;
}

.readydesign-form-label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.3s ease;
}

.readydesign-form-input:focus ~ .readydesign-form-label,
.readydesign-form-input:valid ~ .readydesign-form-label {
  top: -20px;
  font-size: 0.85rem;
  color: #a7c0e5;
}

.readydesign-form-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 13px 35px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.readydesign-form-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #a7c0e5;
  transition: width 0.3s ease;
  z-index: -1;
}

.readydesign-form-button:hover {
  color: #121212;
  border-color: #a7c0e5;
}

.readydesign-form-button:hover::before {
  width: 100%;
}

.readydesign-form-button-icon {
  transition: transform 0.3s ease;
}

.readydesign-form-button:hover .readydesign-form-button-icon {
  transform: translateX(5px);
}

/* Animated design elements */

.readydesign-contact-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 192, 229, 0.4) 0%, rgba(167, 192, 229, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.readydesign-contact-accent-1 {
  top: -150px;
  right: 10%;
  opacity: 1;
}

.readydesign-contact-accent-2 {
  bottom: -150px;
  right: 5%;
  opacity: 0.8;
}

/* Form animation */
.readydesign-form-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #a7c0e5;
  transition: width 0.3s ease;
}

.readydesign-form-input:focus ~ .readydesign-form-focus-line {
  width: 100%;
}

/* Success Message Styles */
.readydesign-form-success {
  background-color: rgba(67, 170, 139, 0.1);
  border-left: 3px solid #43AA8B;
  padding: 15px 20px;
  margin-top: 30px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.readydesign-form-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Styles */
.readydesign-footer {
  background-color: #0a0a0a;
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.7);
}

.readydesign-footer-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.readydesign-footer-logo {
  font-size: 1.8rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.readydesign-footer-logo:hover {
  color: #a7c0e5;
}

.readydesign-footer-nav {
  display: flex;
  gap: 40px;
}

.readydesign-footer-nav-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.readydesign-footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #a7c0e5;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.readydesign-footer-nav-link:hover {
  color: #ffffff;
}

.readydesign-footer-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .readydesign-contact-form-container {
    padding: 70px 60px 70px 40px;
  }

  .readydesign-contact-title {
    font-size: 2.2rem;
  }

  .readydesign-contact-subtitle {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 992px) {
  .readydesign-contact-wrapper {
    flex-direction: column;
  }

  .readydesign-contact-media {
    height: 400px;
  }

  .readydesign-contact-form-container {
    padding: 60px 50px;
  }

  .readydesign-contact-form-container::before {
    display: none;
  }

  .readydesign-contact-title {
    font-size: 2rem;
  }

  .readydesign-contact-subtitle {
    font-size: 1.2rem;
  }

  .readydesign-footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .readydesign-contact-form-container {
    padding: 50px 30px;
  }

  .readydesign-contact-title {
    font-size: 1.8rem;
  }

  .readydesign-contact-subtitle {
    font-size: 1.1rem;
  }

  .readydesign-contact-description {
    font-size: 1rem;
  }

  .readydesign-footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  .readydesign-contact-media {
    height: 300px;
  }

  .readydesign-contact-form-container {
    padding: 40px 25px;
  }

  .readydesign-contact-title {
    font-size: 1.6rem;
  }

  .readydesign-form-button {
    width: 100%;
    justify-content: center;
  }
}