/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: black; /* or any other background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo span {
  font-size: 0.8em;
  display: block;
}
.id1{
  position: fixed;
}
.navbar {
  list-style: none;
  display: flex;
  gap: 40px;
  padding-right: 600px;
}

.navbar a {
  color: white;
  text-decoration: none;
}


/* ////Services */
/* Make sure the dropdown parent is positioned */
.dropdown {
position: relative;
}

/* Dropdown menu style */
.dropdown-menu {
display: none;
position: absolute;
top: 100%;     /* Below the Services link */
left: 0;       /* Align to the left of the parent */
background-color: white;
list-style: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 180px;  /* You can adjust this width */
padding: 0;
margin: 0;
z-index: 1000;
}

/* List items */
.dropdown-menu li {
padding: 10px;
}

.dropdown-menu li a {
text-decoration: none;
color: #333;
display: block;
}

/* Hover effect */
.dropdown-menu li a:hover {
background-color: #f2f2f2;
color: #007BFF;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
display: block;
}

/*.hero {*/
/*  background-image: url('/Image/Home2.jpg');*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  background-size: cover;*/
/*  height: 700px;*/
/*  position: relative;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  image-rendering: auto;*/
/*}*/

/*.overlay-text {*/
/*  color: white;*/
/*  text-align: center;*/
  /* background-color: rgba(0, 0, 0, 0.4); */
/*  padding: 30px;*/
/*  border-radius: 10px;*/
/*}*/

.quote-button {
  position: fixed; /* Fix the button position */
  top: 50%;        /* Adjust as needed */
  right: 0;        /* Stick to the right side */
  transform: translateY(-50%); /* Center vertically */
  
  display: inline-block;
  background-color: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;

  writing-mode: vertical-rl; /* Makes the text vertical */
  text-orientation: mixed;   /* Ensures readable letters */
}
.cl1{
  padding-right: 1000px;
}


/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 28px;
  color: green;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  z-index: 999;
}

.whatsapp-button:hover {
  transform: scale(1.2);
}

/* About Section */
.about {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h4 {
  color: #888;
}

.about-content h2 {
  color: #333;
  margin: 10px 0;
}

.about-content p {
  color: #555;
  margin-bottom: 20px;
}

.about-content .quote-button {
  background-color: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}


/* ///service section */
/* Services Section */
.services-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.services-heading h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 10px;
}

.services-heading p {
  color: #555;
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #f3f3f3;
  padding: 25px;
  border-radius: 10px;
  width: 250px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: #fff8f0;
}

.service-icon {
  font-size: 40px;
  color: #ff6f00;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

.services-footer-text {
  max-width: 900px;
  margin: 40px auto 0;
  color: #444;
  font-size: 15px;
}

@media (max-width: 768px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
  }
}


 /* ///interior section */


 .interior-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.interior-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 30px;
}

.interior-image img {
   max-width: 100%; 

  height: 560px;
  border-radius: 8px;
}

 .interior-image {
  flex: 1 1 45%;
}
 
.interior-content {
  flex: 1 1 50%;
  background-color: #f7f7f7;
  margin-left: -0.15px;

}

.interior-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.interior-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;

}
/* .interior-content {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #f7f7f7;
}
 */
.consult-btn {
  display: inline-block;
  background-color: #ff7e00;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.consult-btn:hover {
  background-color: #e36f00;
}


/* ////Working Section */

.working-process {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.process-box {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.7); /* dark overlay */
  color: #fff;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.box1 {
  background-image: url('images/blueprint1.jpg'); /* replace with your image path */
}

.box2 {
  background-image: url('images/blueprint2.jpg');
}

.box3 {
  background-image: url('images/blueprint3.jpg');
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.process-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.process-box p {
  font-size: 14px;
  line-height: 1.6;
}
/* ////logo section */

.clients-section {
background-color: #f9f9f9;
padding: 50px 20px;
text-align: center;
}

.clients-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 40px;
align-items: center;
}

.clients-container img {
max-height: 60px;
opacity: 0.6;
transition: opacity 0.3s ease;
}

.clients-container img:hover {
opacity: 1;
}


/* /////image section */
.units-section {
display: flex;
height: 100vh;
width: 100%;
overflow: hidden;
}

.unit {
flex: 1;
background-size: cover;
background-position: center;
position: relative;
transition: transform 0.3s ease;
display: flex;
align-items: flex-end;
padding: 20px;
color: white;
cursor: pointer;
}

.unit:hover {
transform: scale(1.03);
z-index: 1;
}

.unit-info {
padding: 15px;
border-radius: 5px;
background: rgba(0,0,0,0.5);
position: relative;
width: 100%;
}

.unit-info span {
font-size: 14px;
color: #ccc;
}

.unit-info h3 {
font-size: 18px;
margin-top: 5px;
color: white;
}

/* hide by default */
.view-project {
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0,191,255,0.8);
padding: 8px 16px;
border-radius: 20px;
text-decoration: none;
color: white;
font-size: 14px;
transition: background 0.3s;
}

/* show on hover of the entire .unit */
.unit:hover .view-project {
display: block;
}

.view-project:hover {
background: #00aaff;
}

@media (max-width: 768px) {
  .units-section {
    flex-direction: column;
  }

  .unit {
    width: 100%;
    max-width: 100%;
    height: 250px;
    flex: none; /* remove flex: 1 effect */
  }
}



/* Testimonials Section */
#testimonials {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.section-subtitle {
  color: #888;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-box {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial-text {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 20px;
  color: #444;
}

.client-name {
  font-weight: bold;
  font-size: 14px;
  color: #222;
}

.client-name span {
  display: block;
  font-weight: normal;
  font-size: 13px;
  color: #666;
}



/* Concept to Completion Section */
#concept-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.concept-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.concept-image img {
  width: 600PX;
  height: 200PX;
  border-radius: 5px;
}

.concept-content {
  max-width: 550px;
}

.concept-subtitle {
  text-transform: uppercase;
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.concept-title {
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
}

.concept-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.concept-text a {
  color: #007bff;
  text-decoration: none;
}

.concept-text a:hover {
  text-decoration: underline;
}


.working-process {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.working-process h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.process-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.process-box {
  background: #2e2e2e;
  color: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  transition: transform 0.3s;
  background-image: url('your-bg-image.jpg'); /* Optional */
  background-size: cover;
  background-blend-mode: multiply;
}

.process-box:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
}



.clients-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.clients-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.clients-container img {
  max-height: 60px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.clients-container img:hover {
  opacity: 1;
}


/* /////image section */
.units-section {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.unit {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  cursor: pointer;
}

.unit:hover {
  transform: scale(1.03);
  z-index: 1;
}

.unit-info {
  padding: 15px;
  border-radius: 5px;
  background: rgba(0,0,0,0.5);
  position: relative;
  width: 100%;
}

.unit-info span {
  font-size: 14px;
  color: #ccc;
}

.unit-info h3 {
  font-size: 18px;
  margin-top: 5px;
  color: white;
}

/* hide by default */
.view-project {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,191,255,0.8);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: background 0.3s;
}

/* show on hover of the entire .unit */
.unit:hover .view-project {
  display: block;
}

.view-project:hover {
  background: #00aaff;
}





.trust-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.trust-section h2 {
  font-size: 30px;
  color: #333;
  margin-bottom: 40px;
}

.trust-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-box {
  background: #2e2e2e;
  color: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  transition: transform 0.3s;
  background-image: url('your-bg-image.jpg'); /* Optional background */
  background-size: cover;
  background-blend-mode: multiply;
}

.trust-box:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
}



/* Image Gallery Styles */

#image-gallery {
  padding: 40px;
  background-color: #f9f9f9;
}

.gallery-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


.testimonials {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials .subheading {
  color: #555;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonials h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-box {
  width: 300px;
  border: 1px solid #ccc;
  padding: 25px;
  border-radius: 5px;
  background: #fafafa;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.testimonial-box .quote {
  font-size: 30px;
  color: #666;
  margin-bottom: 20px;
}

.testimonial-box p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

.testimonial-box h3 {
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
}

.testimonial-box span {
  font-size: 13px;
  color: #888;
}



/* Concept to Completion Section */
#concept-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.concept-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.concept-image img {
  width: 600PX;
  height: 200PX;
  border-radius: 5px;
}

.concept-content {
  max-width: 550px;
}

.concept-subtitle {
  text-transform: uppercase;
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.concept-title {
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
}

.concept-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.concept-text a {
  color: #007bff;
  text-decoration: none;
}

.concept-text a:hover {
  text-decoration: underline;
}




.blog-section {
  display: flex;
  gap: 30px;
  padding: 50px 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Segoe UI', sans-serif;
}

.blog-card {
  width: 350px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-image .tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #2f2f2f;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  background-color: #f7941d;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  border-radius: 2px;
}


.cta-section {
  background-color: #f8f8f8;
  padding: 40px 20px;
}

.cta-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.cta-text p {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.cta-button a {
  background-color: #f7941d;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.cta-button a:hover {
  background-color: #e67e00;
}


.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #333;
}

.faq-icon {
  font-weight: bold;
  font-size: 20px;
  color: #555;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  color: #444;
}

.faq-answer p {
  padding: 0 0 15px;
}

