@charset "UTF-8";
/*-----------------
[Master Stylesheet]
Project:	Interior & Furniture
-----------------*/	
/*-----------------
[Table of contents]

1. Body
2. Click Top / #topcontrol
4. Header / .header
5. navbar / .navbar
6. Theme Banner / #banner
7. section-about / #section-about
8. Our Service / #Our Service
9. section-testimonial / #section-testimonial
10. section-portfolio / #portfoliolist
11. bg-image / #bg-image 
12. event / .event
13. footer / .footer

--------------------------------------------------------------------
[Color codes]
Body-Font:  	#ffffff {white}
Background:		#ffffff (white)
Content:		#111111 (dark grey)
Default:		#fecb38 (Yellow)

a (standard):	#212121 (dark grey)
a (visited):	#fecb38 (Yellow )
a (active):	 	#fecb38 (Yellow ) 
-------------------------------------------------------------------
Body defaults:14px 'Ubuntu', sans-serif;;
Input, textarea:14px 'Ubuntu', sans-serif;;
Notes:	decreasing heading by 0.4em with every subsequent heading level
-------------------------------------------------------------------*/
@import url("../font-awesome/css/font-awesome.min.css");
@import url("bootstrap.min.css");
@import url("style.css");
@import url("layout.css");
@import url("hover.css");
@import url("one-page.css");

@import url("../js/animate.min.css");
@import url("style-hover.css");
@import url("responsive.css");

/* Process Section Styles */
.our-process {
  padding: 80px 0;
  background: #f8f9fa;
}

.our-process h2 {
  color: #212121;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.our-process p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

.process-timeline {
  margin-top: 50px;
}

.process-step {
  margin-bottom: 40px;
}

.process-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.process-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Process Modal Styles */
.process-modal-enhanced {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.process-modal-enhanced.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content-enhanced {
  position: relative;
  background: #fff;
  max-width: 600px;
  margin: 50px auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideUp 0.4s ease;
}

.modal-close-enhanced {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fecb38;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #212121;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close-enhanced:hover {
  background: #212121;
  color: #fecb38;
  transform: rotate(90deg);
}

.modal-header-enhanced {
  background: linear-gradient(135deg, #fecb38 0%, #f5a623 100%);
  padding: 40px 30px;
  text-align: center;
  position: relative;
}

.modal-icon-enhanced {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-icon-enhanced i {
  font-size: 36px;
  color: #fecb38;
}

.modal-header-enhanced h3 {
  color: #212121;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.modal-body-enhanced {
  padding: 40px 30px;
}

.modal-body-enhanced p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.modal-features-enhanced {
  margin-bottom: 30px;
}

.modal-features-enhanced h4 {
  color: #212121;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.modal-features-enhanced ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-features-enhanced li {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.modal-features-enhanced li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fecb38;
  font-weight: bold;
}

.modal-details-enhanced {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.modal-details-enhanced h5 {
  color: #212121;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.modal-details-enhanced h5 i {
  color: #fecb38;
  margin-right: 8px;
}

.modal-details-enhanced p {
  color: #666;
  font-size: 14px;
  margin: 0;
  text-align: left;
}

.modal-cta-button {
  background: linear-gradient(135deg, #fecb38 0%, #f5a623 100%);
  color: #212121;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.modal-cta-button:hover {
  background: linear-gradient(135deg, #212121 0%, #333 100%);
  color: #fecb38;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #fecb38;
  color: #212121;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(254,203,56,0.3);
}

.process-icon {
  margin-bottom: 20px;
}

.process-icon i {
  font-size: 48px;
  color: #fecb38;
  transition: all 0.3s ease;
}

.process-item:hover .process-icon i {
  color: #212121;
  transform: scale(1.1);
}

.process-item h4 {
  color: #212121;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.process-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .our-process {
    padding: 60px 0;
  }
  
  .our-process h2 {
    font-size: 28px;
  }
  
  .process-item {
    margin-bottom: 30px;
  }
}