/* Global Styles */
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/Inter_24pt-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: "Playfair Display";
    src: url("fonts/Playfair_Display/PlayfairDisplay-Regular.ttf") ;
    font-weight: 400;
    font-style: normal;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #1a1a1a;
  color: #fff;
  overflow-x: hidden;
}

body.no-scroll{
    overflow: hidden;
}
a{
    color: inherit;
    text-decoration: none;
}

img{
    max-width: 100%;
    object-fit: cover;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #ffcc00;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffcc00;
}

.burger {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}
.color{
    color: #ffcc00;
}
/* Button Styles */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #ffcc00;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

/* Index Page Styles */
.hero {
  height: 100vh;
  max-height: 1200px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/banner2.webp') center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  z-index: 1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.about  .container{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 40px;
}

.about img {
  width: 50%;
  border-radius: 10px;
}

.services {
  background: url('image/marble.jpeg') center/cover;
  text-align: center;
  position: relative;
  color: #fff;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.portfolio {
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.portfolio-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.process {
  background: linear-gradient(135deg, #e91e63, #1a1a1a);
  color: #fff;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.process-step {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.testimonials {
  text-align: center;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.testimonial-slider::-webkit-scrollbar{
    width: 0;
}

.testimonial-card {
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.blog {
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.blog-post img {
  width: 100%;
  border-radius: 10px;
}

.faq {
  background: url('image/marble.jpeg') center/cover;
  position: relative;
  color: #fff;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

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

.team {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.team-member img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.contact {
  background: linear-gradient(135deg, #ffcc00, #e91e63);
  text-align: center;
  color: #1a1a1a;
}
.contact h2{
    color: #1a1a1a !important;
}
.contact form {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
}

.contact button {
  background: #1a1a1a;
  color: #ffcc00;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact button:hover {
  transform: scale(1.1);
}

.checkbox{
    width: 13px !important;
    margin: 0 !important;

}
.checkbox-wrapper{
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    align-items: center;
}
/* Philosophy Page Styles */
.hero-philosophy {
  height: 80vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/banner.jpeg') center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 50%;
}

.hero-philosophy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-philosophy p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.inspiration {
  
  position: relative;
  color: #fff;
}
.inspiration .container{
    display: flex;
  align-items: center;
  gap: 40px;
}

.inspiration-content {
  position: relative;
  z-index: 1;
  max-width: 50%;
}

.inspiration img {
  width: 40%;
  border-radius: 10px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.principle-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.principle-card:hover {
  transform: translateY(-10px);
}

.approach {
  background: linear-gradient(135deg, #e91e63, #1a1a1a);
  text-align: center;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.approach-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.approach-step img {
  width: 150px;
  border-radius: 10px;
}

.materials {
  text-align: center;
}

.materials-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.material-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.culture {
  background: url('image/marble.jpeg') center/cover;
  position: relative;
  color: #fff;
  text-align: center;
}

.culture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

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

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.culture-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.sustainability .container{
  display: flex;
  align-items: center;
  gap: 40px;
}

.sustainability img {
  width: 50%;
  border-radius: 10px;
}

.trends {
  text-align: center;
}

.trends-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.trends-slider::-webkit-scrollbar{
    width: 0;
}

.trend-card {
  min-width: 300px;
  flex: 1 0 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.collaboration {
  background: linear-gradient(135deg, #ffcc00, #e91e63);
  text-align: center;
  color: #1a1a1a;
}

.collaboration form {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.collaboration input,
.collaboration textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
}

.collaboration button {
  background: #1a1a1a;
  color: #ffcc00;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s;
}

.collaboration button:hover {
  transform: scale(1.1);
}

/* Gallery Page Styles */
.hero-gallery {
  height: 80vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/appartment.jpeg') center/cover;
  opacity: 0.3;
  z-index: 0;
}

.moodboard {
  
  position: relative;
  color: #fff;
}
.moodboard .container{
   display: flex;
  align-items: center;
  gap: 40px; 
}
.moodboard-content {
  position: relative;
  z-index: 1;
  max-width: 50%;
}

.moodboard img {
  width: 40%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.moodboard img:hover {
  transform: scale(1.05);
}

.color-stories {
  text-align: center;
  background: linear-gradient(135deg, #e91e63, #1a1a1a);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.color-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.color-card:hover {
  transform: translateY(-10px);
}

.textures {
  text-align: center;
}

.texture-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.texture-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.texture-item img:hover {
  transform: scale(1.05);
}

.patterns {
  background: url('image/marble.jpeg') center/cover;
  position: relative;
  color: #fff;
  text-align: center;
}

.patterns::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

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

.pattern-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.pattern-slider::-webkit-scrollbar{
    width: 0;
}

.pattern-card {
  min-width: 300px;
  flex: 1 0 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.spaces .container{
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column-reverse;
}



.spaces img {
  width: 50%;
  border-radius: 10px;
}

.elements {
  text-align: center;
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.element-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.element-card:hover {
  transform: translateY(-10px);
}

.stories {
  background: linear-gradient(135deg, #ffcc00, #e91e63);
  text-align: center;
  color: #1a1a1a;
}

.stories h2{
    color: #333 !important;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.story-card img {
  width: 100%;
  border-radius: 10px;
}

/* Showcase Page Styles */
.hero-showcase {
  height: 80vh;
  background: linear-gradient(135deg, #ffcc00, #e91e63);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.featured-content {
  position: relative;
  z-index: 1;
  max-width: 50%;
}

.featured-project img {
  width: 40%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.featured-project img:hover {
  transform: scale(1.05);
}

.project-gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.design-details {
  background: linear-gradient(135deg, #e91e63, #1a1a1a);
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.detail-card:hover {
  transform: translateY(-10px);
}

.client-stories {
  text-align: center;
}

.stories-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.story-card {
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.craftsmanship {
  display: flex;
  align-items: center;
  gap: 40px;
}

.craftsmanship img {
  width: 50%;
  border-radius: 10px;
}

.view-work{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* Privacy Policy and Terms of Service Styles */
.hero-privacy,
.hero-terms {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #ffcc00, #e91e63);
  text-align: center;
}

.hero-privacy h1,
.hero-terms h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-privacy p,
.hero-terms p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Thanks Page Styles */
.thanks .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

.thanks h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thanks p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.thanks .btn {
  background: #1a1a1a;
  color: #ffcc00;
}

.thanks .btn:hover {
  background: #333;
  transform: none;
  box-shadow: none;
}

/* Shared Section Styles */
.section {
  padding: 80px 0;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffcc00;
}

.section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.section ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.section ul li {
  margin-bottom: 10px;
}

/* Accordion Styles (for Gallery and Showcase) */
.accordion {
  margin-top: 40px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  border-radius: 10px;
}

.accordion-header {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  display: none;
  padding: 15px;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Footer Styles */
footer {
  background: #1a1a1a;
  padding: 40px 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-grid a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-grid h3, .footer-logo {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #fff !important;
  display: inline-block;
  font-size: 20px;
}

.footer-column{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Scroll Animation (for Gallery and Showcase) */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 20px;
  }

  nav ul.active {
    display: flex;
    gap: 20px;
  }

  .burger {
    display: block;
  }

  .about,
  .inspiration .container,
  .sustainability .container,
  .moodboard .container,
  .spaces,
  .featured-project,
  .craftsmanship {
    flex-direction: column;
  }
.moodboard-content{
    width: 100%;
    max-width: none;
}
  .about img,
  .inspiration img,
  .sustainability img,
  .moodboard img,
  .spaces img,
  .featured-project img,
  .craftsmanship img {
    width: 100%;
  }

  .hero-content,
  .inspiration-content,
  .featured-content {
    max-width: 100%;
    padding: 20px;
  }

  .container{
    padding: 0 10px;
  }

  .hero h1{
font-size: 2.5rem;
  }
  .approach-step {
    flex-direction: column;
  }
  .section{
    padding: 50px 0;
  }
}