*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body{
  background-color: #f8f8f8;
  color: #222;
}

/* NAVBAR */
header{
  background: #111;
  padding: 18px 60px;
  border: #111;
}

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

.logo{
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}

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

nav ul li a{
  color: #fff;
  text-decoration: none;
}

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

/* HERO */
.hero{
  height: 100vh;
  display:flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.85)
    ),
    url("images/1.JPG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0px;
  position:relative;
  
}



.hero h1{
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.9);
}

.hero p{
    margin-top: 16px;
    font-size: 18px;
    color: rgba(255,255,255,0.95);
}

.hero-text{
    margin-top: 20px;
    font-size: 18px;
}


/* SECTIONS */
section{
  padding: 70px 10%;
  background: white;
  margin-top: 30px;
}

.why-us {
    background: #fafafa;
    text-align: center;
}

.why-us h2{
  font-size: 40px;
}

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

.feature{
    background: #e0dfdf;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    transition:0.4s;
}

.feature:hover{
    transform: scale(1.1);
}

.feature h3{
    font-size: 20px;
}

.feature p{

    margin-top: 10px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.Our-Brands{
    background: #fafafa;
    padding: 80px 10%;
}

.section-title{
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

.Trusted-Brands{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    align-items: center;
    gap: 60px;
}

.Brand{
    display: flex;
    justify-content: center;
    align-items: center;
}

.Brand img{
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.Brand img:hover{

    opacity: 1;
    transform: scale(1.05);

}

.products{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.product-card{
  background: #f2f2f2;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.visit-us{
    background: #111;
    color:#fff;
    text-align: center;
    padding: 70px 10%;
}

.visit-us h2{
    font-size:30px;
    margin-bottom: 20px;
}

.visit-us p{
    font-size: 16px;
    line-height:1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.visit-btn{
    display: inline-block;
    margin-top: 10px;
    padding: 12px 30px;
    background: #918e87;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.visit-btn:hover{
    transform: scale(1.1);
}


/*ABOUT PAGE*/


.about-header{
  background: #efefef;
  color: #000000;
  text-align: center;
  padding: 70px 10%;
  
}

.about-header{
  background: #f8f8f8;
  
}
.about-header h1{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

/* ABOUT PAGE BLOCKS */
.about-block{
  background: #ffffff;
  padding: 40px 35px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  position: relative;
}

/* Accent line */
.about-block::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #000;
  border-radius: 12px 0 0 12px;
}

/* Headings */
.about-block h2{
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 15px;
  color: #111;
}

/* Paragraphs */
.about-block p{
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* List styling */
.about-block ul{
  margin-top: 10px;
  padding-left: 20px;
}

.about-block li{
  font-size: 15px;
  margin-bottom: 8px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px){
  .about-block{
    padding: 30px 20px;
    margin: 25px 15px;
  }

  .about-block h2{
    font-size: 22px;
  }
}





.about-cta{
  padding: 50px 10%;
  background: #111;
  color: #fff;
  text-align: center;
}


.about-cta p{
  font-size: 18px;
  opacity: 0.9;
  padding-bottom: 20px;
}

.cta-btn{
  display: inline-block;
  padding: 12px 32px;
  background:#918e87;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/*CONTACT PAGE*/


/* CONTACT HEADER */
.contact-header{
  background: white;
  color: #000000;
  text-align: center;
  padding: 70px 10%;
  margin-top: 0px;
}

.contact-header h1{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-header p{
  font-size: 18px;
  opacity: 0.85;
}

/* CONTACT SECTION */
.contact-section{
  margin-top: 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  padding: 80px 10%;
  background: #fff;
}

.contact-info h2,
.contact-form h2{
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-info p{
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

/* FORM */
.contact-form form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea{
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
}

.contact-form button{
  margin-top: 10px;
  padding: 12px;
  border: none;
  background: #918e87;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

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

/* MAP */
.map-section{
    margin-top: 0px;
}
.map-section iframe{
  width: 100%;
  height: 350px;
  border: none;
}

/* ACTIVE NAV */
nav ul li a.active{
  color: #494949;
}

.direction-btn{
  
  padding: 12px;
  border: none;
  background: #000000;
  color: #ffffff;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  text-align: center;
}



/* PRODUCTS HEADER */
.products-header{
    margin-top: 0px;
  background: white;
  color: #000000;
  text-align: center;
  padding: 70px 10%;
}

.products-header h1{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.products-header p{
  font-size: 18px;
  opacity: 0.85;
}

/* PRODUCTS GRID */
.products-section{
    margin-top: 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 80px 10%;
  background: #fff;
}

.product-card{
  background: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.product-card h3{
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

.product-card p{
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.product-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* PRODUCTS CTA */
.products-cta{
    margin-top: 0px;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 10%;
}

.products-cta p{
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.product-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}


/*Card-Link Styles */
.card-link{
  text-decoration: none;
  color: inherit;
}

/* TILES BODY */


.tiles-header{
  margin-top: 0px;
  background: #f0f0f0;
  color: #000000;
  text-align: center;
  padding:50px 10%;
}

.tiles-header h1{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.tiles-grid h3{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}

.tiles-grid p{
  font-size: 16px;
  opacity: 0.85;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
}


.tiles body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.tiles-item{
  background: #ffffff;
  border-radius: 10px;
  padding:15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease , box-shadow 0.3s ease;
}

.tiles-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tiles-item img{
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
}


/* BACK BUTTON */
.tiles-back{
  margin-top: 20px;
  text-align: center;
}

.tiles-back a{
  text-decoration: none;
  padding: 10px 20px;
  color: #ffffff;
  background: #000000;
  border-radius: 30px;
  transition: background 0.3s ease;

}

.tiles-back a:hover{
  background: #333333;
} 

/* ===== TILES TABS ===== */

.tiles-tabs {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
}

.tiles-tabs input {
  display: none;
}

.tab-labels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.tab-labels label {
  padding: 10px 22px;
  border-radius: 30px;
  background: #eaeaea;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

#tt1:checked ~ .tab-labels label[for="tt1"],
#tt2:checked ~ .tab-labels label[for="tt2"],
#tt3:checked ~ .tab-labels label[for="tt3"],
#tt4:checked ~ .tab-labels label[for="tt4"],
#tt5:checked ~ .tab-labels label[for="tt5"],
#tt6:checked ~ .tab-labels label[for="tt6"] {
  background: #000;
  color: #fff;
}

/* Tab content logic */
.tab-content {
  display: none;
}

#tt1:checked ~ .tt1,
#tt2:checked ~ .tt2,
#tt3:checked ~ .tt3,
#tt4:checked ~ .tt4,
#tt5:checked ~ .tt5,
#tt6:checked ~ .tt6 {
  display: block;
}


/*PAINTS*/

.paint-header{
  margin-top: 0px;
  background: #f0f0f0;
  color: #000000;
  text-align: center;
  padding:50px 10%;
}

.paint-header h1{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.paint-header p{
  font-size: 18px;
  opacity: 0.85;
}

.paints-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  
}

.paint-item{
  background: #ffffff;
  border-radius: 10px;
  padding:15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease , box-shadow 0.3s ease;
}

.paint-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.paint-item img{
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
}

.paint-item h3{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}

.paint-item p{
  font-size: 16px;
  opacity: 0.85;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* ===== PAINT TABS ===== */

.paint-tabs {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
}

.paint-tabs input {
  display: none;
}

.paint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Active tab highlight */
#pt1:checked ~ .tab-labels label[for="pt1"],
#pt2:checked ~ .tab-labels label[for="pt2"],
#pt3:checked ~ .tab-labels label[for="pt3"],
#pt4:checked ~ .tab-labels label[for="pt4"],
#pt5:checked ~ .tab-labels label[for="pt5"],
#pt6:checked ~ .tab-labels label[for="pt6"] {
  background: #000;
  color: #fff;
}

/* Tab visibility */
#pt1:checked ~ .pt1,
#pt2:checked ~ .pt2,
#pt3:checked ~ .pt3,
#pt4:checked ~ .pt4,
#pt5:checked ~ .pt5,
#pt6:checked ~ .pt6 {
  display: block;
}


/*ELECTRICAL*/

/* ===== Electrical Page ===== */

.electrical-header {
  margin-top: 0px;
  text-align: center;
  padding: 60px 20px 40px;
}

.electrical-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.electrical-header p {
  color: #555;
}

/* Grid */
.electrical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
  margin-top: 50px;
}

/* Item Card */
.electrical-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.electrical-item:hover {
  transform: translateY(-6px);
}

.electrical-item img {
  width: 100%;
  height: 180px;
  object-fit:contain;
  object-position: center;
  border-radius: 8px;
}

.electrical-item h3 {
  margin: 12px 0 5px;
}

.electrical-item p {
  font-size: 14px;
  color: #555;
}

/* ===== ELECTRICAL TABS ===== */

.electrical-tabs {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
}

.electrical-tabs input {
  display: none;
}

.electrical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Active tab highlight */
#et1:checked ~ .tab-labels label[for="et1"],
#et2:checked ~ .tab-labels label[for="et2"],
#et3:checked ~ .tab-labels label[for="et3"],
#et4:checked ~ .tab-labels label[for="et4"],
#et5:checked ~ .tab-labels label[for="et5"],
#et6:checked ~ .tab-labels label[for="et6"] {
  background: #000;
  color: #fff;
}

/* Tab visibility */
#et1:checked ~ .et1,
#et2:checked ~ .et2,
#et3:checked ~ .et3,
#et4:checked ~ .et4,
#et5:checked ~ .et5,
#et6:checked ~ .et6 {
  display: block;
}


/*PLUMBING*/

/* ===== Plumbing Supplies Page ===== */

.plumbing-header {
  margin-top: 0px;
  text-align: center;
  padding: 60px 20px 40px;
}

.plumbing-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.plumbing-header p {
  color: #555;
}

/* Grid */
.plumbing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto 60px;
  margin-top: 50px;
  padding: 0 20px;
}

/* Item Card */
.plumbing-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.plumbing-item:hover {
  transform: translateY(-6px);
}

.plumbing-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
}

.plumbing-item h3 {
  margin: 12px 0 5px;
}

.plumbing-item p {
  font-size: 14px;
  color: #555;
}

/*PLUMBING SUPPLIES*/

/* ===== Tools & Hardware Page ===== */

.tools-header {
  margin-top: 0px;
  text-align: center;
  padding: 60px 20px 40px;
}

.tools-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
}

.tools-header p {
  color: #555;
}

/* Tabs */
.tools-tabs {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
}

.tools-tabs input {
  display: none;
}

.tab-labels {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.tab-labels label {
  padding: 10px 22px;
  border-radius: 20px;
  background: #eee;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

#tab1:checked ~ .tab-labels label[for="tab1"],
#tab2:checked ~ .tab-labels label[for="tab2"],
#tab3:checked ~ .tab-labels label[for="tab3"],
#tab4:checked ~ .tab-labels label[for="tab4"] {
  background: #000;
  color: #fff;
}

/* Tab Content */
.tab-content {
  display: none;
}

#tab1:checked ~ .tab1,
#tab2:checked ~ .tab2,
#tab3:checked ~ .tab3,
#tab4:checked ~ .tab4 {
  display: block;
}

/* Grid */
.tools-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Item */
.tools-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.tools-item:hover {
  transform: translateY(-6px);
}

.tools-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
}

.tools-item h3 {
  margin: 12px 0 5px;
}

.tools-item p {
  font-size: 14px;
  color: #555;
}


/* ===== PLUMBING TABS ===== */

.plumbing-tabs {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
}

.plumbing-tabs input {
  display: none;
}

.plumbing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Active tab highlight */
#ptb1:checked ~ .tab-labels label[for="ptb1"],
#ptb2:checked ~ .tab-labels label[for="ptb2"],
#ptb3:checked ~ .tab-labels label[for="ptb3"],
#ptb4:checked ~ .tab-labels label[for="ptb4"],
#ptb5:checked ~ .tab-labels label[for="ptb5"],
#ptb6:checked ~ .tab-labels label[for="ptb6"] {
  background: #000;
  color: #fff;
}

/* Tab visibility */
#ptb1:checked ~ .ptb1,
#ptb2:checked ~ .ptb2,
#ptb3:checked ~ .ptb3,
#ptb4:checked ~ .ptb4,
#ptb5:checked ~ .ptb5,
#ptb6:checked ~ .ptb6 {
  display: block;
}


/*Contstruction page*/


/* ===== Construction Materials Page ===== */

.construction-header {
  text-align: center;
  padding: 60px 20px 40px;
}

.construction-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
}

.construction-header p {
  color: #555;
}

/* Tabs */
.construction-tabs {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
}

.construction-tabs input {
  display: none;
}

/* Reuse tab labels */
.tab-labels {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

/* Active tabs */
#ctab1:checked ~ .tab-labels label[for="ctab1"],
#ctab2:checked ~ .tab-labels label[for="ctab2"],
#ctab3:checked ~ .tab-labels label[for="ctab3"],
#ctab4:checked ~ .tab-labels label[for="ctab4"] {
  background: #000;
  color: #fff;
}

/* Content */
.tab-content {
  display: none;
}

#ctab1:checked ~ .ctab1,
#ctab2:checked ~ .ctab2,
#ctab3:checked ~ .ctab3,
#ctab4:checked ~ .ctab4 {
  display: block;
}

/* Grid */
.construction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Item */
.construction-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.construction-item:hover {
  transform: translateY(-6px);
}

.construction-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
}

.construction-item h3 {
  margin: 12px 0 5px;
}

.construction-item p {
  font-size: 14px;
  color: #555;
}

/*Whatsap*/
.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.45s;
}


.whatsapp-float:hover{
  transform: scale(1.2);
}




/* FOOTER */
footer{
  background:transparent;
  color: #aaa;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

.site-footer{
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px 10%;
}

.footer-social{
  margin-bottom: 15px;
}

.footer-social a{
  color: #fff;
  margin: 0 12px;
  font-size: 22px;
  transition: color 0.3s ease;
}

.footer-social a:hover{
  color: #d4af37; /* luxury gold accent */
}


@media (max-width: 768px){
  body{
    min-height: auto;
  }

  section{
    min-height: auto;
  }

  .about-cta{
    padding-bottom: 40px;
  }

  .site-footer{
    padding-bottom: 40px;
  }
}
