body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }

  header {
  color: white;
  padding: 7rem 6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-header {
    height: 300px; /* 🔹 smaller height for phones */
    background-position: top center;
  }

  .hero-text {
    width: 90%;
    font-size: 1rem;
    padding: 1rem;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .logo {
    width: 80px;
    top: 15px;
    left: 15px;
    padding: 10px;
  }
}


 /* === Navbar Base === */
nav {
  background-color: rgb(252, 102, 3);
  display: flex;
  justify-content:space-around; /* logo left, links right */
  align-items: center;
  padding: 1.4rem 2rem 0.75rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  gap: 2rem;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* === Logo === */
nav .logo-text {
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

/* === Links === */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #222;
}

/* === Hamburger Button (hidden on desktop) === */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

/* --- Mobile Responsive Fixes --- */
@media (max-width: 768px) {

  /* Fix navbar layout */
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
  }

  .logo-text {
    font-size: 0.9rem;
    text-align: left;
    color: #fff;
  }

  .menu-toggle {
    display: block;
    font-size: 1.4rem;
    color: white;
    background: none;
    border: none;
  }
  @media (max-width: 768px) {
  header {
    padding: 4rem 1.5rem; /* 🔹 Reduce side padding on phones */
    text-align: center;
  }
}

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgb(252, 102, 3);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 0;
    color: white;
    font-size: 1.1rem;
  }

  /* Fix hero section */
  .hero-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }

  .hero-header img.logo {
    width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
  }

  .hero-text h1 {
    font-size: 1.3rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  /* General content alignment */
  section.section {
    padding: 1rem;
    text-align: center;
  }

  .about-section {
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }

  .about-text p {
    text-align: justify;
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  /* Service cards */
  .service-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .service-card {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  /* WhatsApp button stays visible */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    font-size: 1.8rem;
  }

  /* Footer adjustments */
  footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
  }
}



header {
  margin-top: 70px; /* 👈 adjust to match navbar height */
}
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  .section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: auto;
  }
  .about-section {
 background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  overflow: hidden;
  line-height: 1.7;
}

.about-image {
 float: left;
  width: 65%;
  max-width: 550px;
  height: 455px;
  margin: 2rem 1.5rem 1.5rem 0;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* 🔹 Centers all text and images */
    padding: 1.5rem 1rem;
  }

  .about-image {
    float: none;         /* 🔹 Remove float */
    width: 90%;          /* 🔹 Fit image to phone width */
    height: auto;
    margin: 0 auto 1.5rem;
  }

  .about-text {
    text-align: center;
    font-size: 0.95rem;
    max-width: 95%;
  }
}


.about-text {
 color: #333;
  font-size: 1.03rem;
  text-align: justify;
}

.highlight-text {
   color:rgb(252, 102, 3) ;
    font-size: 26px;

}



  .text-image-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .text-block {
    flex: 1 1 45%;
  }
  
  .image-block {
    flex: 1 1 50%;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .image-block img {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }
  
  
  
  /* ==== Interior design section ==== */
.h4{
 color:#0a3d62;
 font-size: 18px;
}

  .services {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .highlight-text{
   color:rgb(252, 102, 3) ;
    font-size: 26px;
  }
  .service {
    flex: 1 1 30%;
    background: #f1f1f1;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #f7f9fc;
  border-radius: 15px;
  text-align: center;
  padding: 25px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr; /* 🔹 Single column on phone */
    justify-items: center;      /* 🔹 Center cards horizontally */
    gap: 1.5rem;
  }

  .service-card {
    width: 90%;
    text-align: center;
  }
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 40px;
  color: rgb(252, 102, 3);
  margin-bottom: 15px;
}

  form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  form button {
    background-color: rgb(252, 102, 3);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  footer {
    background-color: #0a3d62;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
  }
  .footer-locationdetails{
    color: rgb(248, 248, 247);
    text-align: left;
    margin-bottom:20px ;
  }
  .footer-social{
    color: rgb(252, 102, 3);
    text-align: left;
    align-items: flex-start;
    margin-bottom:20px ;
}
.hero-header{
    background-image: url("consback.jpg");
  background-size: cover;
  background-position: center;
  height:350px; /* or any height you want */
  position: relative;
 
}
.hero-text{
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.2rem; /* 👈 Increase this value for bigger text */
  padding: 20px;
  
  border-radius: 10px;
  color:rgb(252, 102, 3) ;
  padding: 20px;
  border-radius: 10px;

  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  color: white;
  
  opacity: 0;
  animation: fadeSlideUp 1.5s ease-out forwards;
  
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
  .logo{
    width: 100px; /* adjust as needed */
  height: auto;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2; /* make sure it's above the background */
  padding: 20px 30px;
  border-radius: 15px;
  background: rgba(236, 230, 230, 0.849);
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;

  animation: slideIn 1.2s ease-out forwards, pulse 3s ease-in-out infinite;

  }
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .articles {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 1rem;
  }
  
  .articles h2 {
    text-align: center;
    color: rgb(252, 102, 3);
    margin-bottom: 2rem;
  }
  
  .article-preview {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
  }
  
  .article-preview h3 {
    margin-top: 0;
  }

  .blog{
   float: left;
  width: 100%;
  max-width: 290px;
  height: 185px;
  margin: -0.8rem 2rem 2rem 0;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

  animation: slideIn 1.2s ease-out forwards, pulse 3s ease-in-out infinite
  }

   .blog1{
   float: right;
  width: 100%;
  max-width: 290px;
  height: 185px;
  margin: 0.3rem 1.5rem 1.5rem 0;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

  animation: slideIn 1.2s ease-out forwards, pulse 3s ease-in-out infinite;


  }

  .article-preview a {
    display: inline-block;
    margin-top: 1rem;
    color: #0a3d62;
    font-weight: bold;
    text-decoration: none;
  }
  
  .article-preview a:hover {
    color: rgb(252, 102, 3);
  }
  .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  width: 60px;        /* fixed width  */
  height: 60px;       /* fixed height → ensures perfect circle */
  border-radius: 50%; /* make it round */
  display: flex;      /* center icon */
  align-items: center;
  justify-content: center;
  font-size: 30px;    /* adjust icon size */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background-color: #1ebe5b;
}

.whatsapp-float i {
  margin: 0;
}

  /* ==== TESTIMONIALS / STATS ==== */
.testimonials {
 background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #eee;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.stat {
  background: white;
  border-radius: 15px;
  padding: 30px;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.stat i {
  font-size: 35px;
  color: rgb(252, 102, 3);
  margin-bottom: 10px;
}

.stat h3 {
  font-size: 1.8rem;
  color: #1e3c72;
}

.stat p {
  color: #555;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.testimonial {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}
  
  .testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .testimonial {
    background: white;
    padding: 20px;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-style: italic;
    color: rgb(252, 102, 3);
  }
  /* ==== PARTNERS ==== */
.partners {
  padding: 60px 10%;
  text-align: center;
  background-color: #ffffff;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.partner-logos img {
  width: 120px;

}

.partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
  .testi {
    color: rgb(252, 102, 3);
  }
  .te{
    color: black;
  }
/* ===== UNIVERSAL IMAGE HOVER EFFECT ===== */
img {
  transition: transform 0.6s ease, box-shadow 0.6s ease, filter 0.6s ease;
  border-radius: 10px; /* optional: soft corners for all images */
}

/* Hover effect */
img:hover {
  transform: scale(1.05); /* subtle zoom */
  filter: brightness(1.1); /* slight glow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* soft shadow */
  cursor: pointer; /* adds interactivity */
}
html, body {
  overflow-x: hidden; /* 🔹 prevent horizontal scrolling */
}

section, .section, .about-section, .services, .articles {
  margin: 0 auto;
  text-align: center;
}

img {
  display: block;
  margin: 0 auto; /* 🔹 ensure all images center */
}


New additions
