html{
scroll-behavior:smooth;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#081521;
overflow-x:hidden;
color:#ffffff;
}

/* HEADER */

header{
background:#0d1b2a;
padding:15px 30px;
position:sticky;
top:0;
z-index:9999;
}

.logo{
text-align:center;
font-size:34px;
font-weight:bold;
color:#f4b400;
margin-bottom:15px;
}

.nav-links{
display:flex;
justify-content:center;
align-items:center;
gap:25px;
list-style:none;
flex-wrap:wrap;
}

.nav-links li{
position:relative;
}

.nav-links a{
color:#fff;
text-decoration:none;
font-size:17px;
font-weight:600;
padding:12px 14px;
display:block;
transition:0.3s;
white-space:nowrap;
}

.nav-links a:hover{
color:#f4b400;
}

/* DROPDOWN */

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#ffffff;
min-width:260px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
display:none;
z-index:999;
overflow:visible;
}

.dropdown:hover > .dropdown-menu{
display:block;
}

.dropdown-menu li{
position:relative;
border-bottom:1px solid #eee;
}

.dropdown-menu li:last-child{
border-bottom:none;
}

.dropdown-menu li a{
color:#222;
padding:14px 18px;
font-size:16px;
white-space:nowrap;
}

/* SUB MENU */

.sub-menu{
position:absolute;
top:0;
left:100%;
background:#ffffff;
min-width:270px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
display:none;
overflow:visible;
}

.sub-dropdown:hover > .sub-menu{
display:block;
}

.sub-menu li{
border-bottom:1px solid #eee;
}

.sub-menu li:last-child{
border-bottom:none;
}

.sub-menu li a{
padding:14px 18px;
font-size:15px;
color:#222;
white-space:normal;
line-height:1.4;
}

/* HERO */

.hero{
text-align:center;
padding:80px 20px 50px;
background:#081521;
}

.hero h1{
font-size:65px;
margin-bottom:20px;
color:#ffffff;
}

.hero p{
font-size:24px;
color:#d6d6d6;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:14px 30px;
background:#f4b400;
color:#0d1b2a;
text-decoration:none;
border-radius:8px;
font-weight:bold;
transition:0.3s;
}

.btn:hover{
background:#d99900;
transform:scale(1.05);
}

/* SLIDER */

.slider-section{
padding:50px 20px 70px;
display:flex;
justify-content:center;
background:#081521;
}

.slider{
width:850px;
height:600px;
position:relative;
overflow:hidden;
border-radius:20px;
background:#ffffff;
box-shadow:0 5px 25px rgba(244,180,0,0.25);
}

.slide{
position:absolute;
width:100%;
height:100%;
object-fit:contain;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

/* ABOUT */

.about-section{
padding:90px 10%;
display:flex;
justify-content:center;
align-items:center;
gap:50px;
flex-wrap:wrap;
background:#10273b;
}

.about-image img{
width:420px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.3);
}

.about-content{
max-width:550px;
}

.about-content h2{
font-size:42px;
margin-bottom:20px;
color:#ffffff;
}

.about-content p{
font-size:17px;
line-height:1.8;
color:#d6d6d6;
margin-bottom:15px;
}

.read-more-btn{
display:inline-block;
background-color:#f4b400;
color:#0d1b2a;
padding:12px 24px;
text-decoration:none;
font-weight:bold;
border-radius:6px;
transition:0.3s;
}

.read-more-btn:hover{
background-color:#d99900;
transform:scale(1.05);
}

/* PRODUCTS / SERVICES */

.products-section{
padding:90px 10%;
background:#081521;
text-align:center;
}

.products-section h2{
font-size:46px;
margin-bottom:50px;
color:#ffffff;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.product-card{
background:#10273b;
border:1px solid #1e3b54;
padding:20px;
border-radius:18px;
box-shadow:0 5px 18px rgba(0,0,0,0.35);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(244,180,0,0.25);
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:12px;
margin-bottom:15px;
}

.product-card h3{
font-size:22px;
color:#ffffff;
}

/* ENQUIRY SECTION */

.enquiry-section{
width:90%;
max-width:700px;
margin:80px auto;
padding:40px;
background:#0d1b2a;
border:3px solid #f4b400;
border-radius:20px;
text-align:center;
box-shadow:0 0 25px rgba(244,180,0,0.35);
}

.enquiry-section h2{
color:#f4b400;
font-size:40px;
font-weight:bold;
margin-bottom:30px;
text-transform:uppercase;
}

.enquiry-section form{
display:flex;
flex-direction:column;
gap:20px;
}

.enquiry-section input,
.enquiry-section textarea{
width:100%;
padding:18px;
font-size:18px;
border-radius:12px;
border:2px solid #f4b400;
outline:none;
background:#10273b;
color:white;
box-sizing:border-box;
}

.enquiry-section input::placeholder,
.enquiry-section textarea::placeholder{
color:#bbb;
}

.enquiry-section button{
width:100%;
padding:18px;
font-size:22px;
font-weight:bold;
background:#f4b400;
color:#0d1b2a;
border:none;
border-radius:12px;
cursor:pointer;
transition:0.3s;
}

.enquiry-section button:hover{
background:#d99900;
transform:scale(1.03);
}

.whatsapp-btn{
display:inline-block;
padding:20px 40px;
background:#f4b400;
color:#0d1b2a;
font-size:24px;
font-weight:bold;
text-decoration:none;
border-radius:15px;
margin-top:30px;
}

/* CONTACT / FOOTER */

.contact-section,
.footer{
padding:90px 20px;
background:#0d1b2a;
text-align:center;
color:#fff;
}

.contact-section h2,
.footer h2{
font-size:42px;
margin-bottom:25px;
color:#f4b400;
}

.contact-section p,
.footer p{
font-size:18px;
margin-bottom:12px;
color:#d6d6d6;
}

/* STATS */

.stats-section{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:60px;
}

.stat-box{
background:#10273b;
padding:30px 40px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
min-width:220px;
}

.stat-box h2{
font-size:55px;
color:#f4b400;
margin-bottom:10px;
}

.stat-box p{
font-size:22px;
font-weight:bold;
color:#ffffff;
}

/* BRANDS */

.brands-section{
margin-top:80px;
text-align:center;
}

.brands-section h2{
font-size:50px;
margin-bottom:40px;
color:#ffffff;
}

.brands-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
align-items:center;
}

.brand-card{
background:#10273b;
padding:20px;
border-radius:15px;
display:flex;
justify-content:center;
align-items:center;
height:220px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.brand-card img{
width:auto !important;
height:auto !important;
max-width:220px !important;
max-height:140px !important;
object-fit:contain;
margin:auto;
transition:0.3s;
}

.brand-card:hover img{
transform:scale(1.08);
}

/* ABOUT HEADER */

.about-header{
padding:20px 40px;
background:#0d1b2a;
}

.home-btn{
display:inline-block;
padding:12px 25px;
background:#f4b400;
color:#0d1b2a;
text-decoration:none;
border-radius:8px;
font-size:18px;
font-weight:bold;
transition:0.3s;
}

.home-btn:hover{
background:#d99900;
}

/* GREEN DRAIN / VIDEO SECTIONS */

.below-gallery-image{
width:100%;
display:block;
clear:both;
margin-top:20px;
}

.below-gallery-image img{
width:100%;
height:auto;
display:block;
}

.product-gallery{
display:flex;
flex-wrap:wrap;
}

.green6-container{
width:100%;
margin-top:40px;
display:flex;
justify-content:center;
}

.green6-image{
width:95%;
max-width:1400px;
border-radius:10px;
}

.content-section{
display:flex !important;
justify-content:space-between !important;
align-items:flex-start !important;
gap:40px !important;
width:100% !important;
padding:40px;
}

.left-content{
width:75% !important;
}

.video-section{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:20px !important;
width:100% !important;
margin-top:40px !important;
}

.green-video{
width:100% !important;
height:320px !important;
object-fit:cover !important;
display:block !important;
border-radius:10px !important;
background:black !important;
}

.right-content{
width:25% !important;
display:flex !important;
justify-content:center !important;
}

.right-content img{
width:250px !important;
max-width:100% !important;
}

/* INSTALL VIDEO */

.install-section{
width:100%;
text-align:center;
margin-top:60px;
}

.install-heading{
font-size:38px;
margin-bottom:25px;
font-weight:bold;
color:#ffffff;
}

.install-video{
width:70%;
height:420px;
object-fit:cover;
border-radius:12px;
background:black;
}

/* GALLERY PAGE */

.gallery-section{
padding:70px 20px;
background:#081521;
}

.gallery-section h2{
text-align:center;
font-size:42px;
color:#f4b400;
margin-bottom:50px;
}

.video-grid{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
}

.video-card{
background:#10273b;
border-radius:16px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,0.35);
transition:0.3s;
padding-bottom:20px;
}

.video-card:hover{
transform:translateY(-6px);
}

.video-card h3{
padding:18px;
font-size:22px;
text-align:center;
color:#f4b400;
}

.video-card video{
width:100%;
height:260px;
object-fit:cover;
display:block;
cursor:pointer;
transition:0.3s;
}

.video-card video:hover{
transform:scale(1.03);
}

/* MOBILE */

@media(max-width:900px){

.nav-links{
align-items:flex-start;
}

.dropdown-menu,
.sub-menu{
position:relative;
left:0;
top:0;
width:100%;
min-width:100%;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
}

.slider{
width:100%;
height:420px;
}

.about-image img{
width:100%;
}

.content-section{
flex-direction:column !important;
}

.left-content,
.right-content{
width:100% !important;
}

.video-section{
grid-template-columns:1fr !important;
}

.green-video{
height:auto !important;
}

.install-video{
width:100%;
height:auto;
}

.gallery-section h2{
font-size:32px;
}

.video-card h3{
font-size:18px;
}

.video-card video{
height:220px;
}

}


/* FOOTER BUTTONS */

.footer-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

.footer-btn{
padding:16px 30px;
border-radius:12px;
text-decoration:none;
font-size:20px;
font-weight:bold;
transition:0.3s;
}

.footer-btn:hover{
transform:translateY(-5px);
}

/* WHATSAPP */

.whatsapp{
background:#25D366;
color:white;
}

/* GMAIL */

.gmail{
background:#EA4335;
color:white;
}

/* INSTAGRAM */

.instagram{
background:linear-gradient(
45deg,
#feda75,
#fa7e1e,
#d62976,
#962fbf,
#4f5bd5
);
color:white;
}
.gallery-item{
    width:100%;
    max-width:1000px;
    margin:30px auto;
    text-align:center;
}

.image-box{
    width:900px;
    height:500px;
    margin:0 auto;
    border:3px solid #ddd;
    border-radius:15px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.image-box{
    width:800px;
    height:450px;
    margin:0 auto;
    border:2px solid #ddd;
    border-radius:15px;
    overflow:hidden;
    background:#fff;
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.gallery-item{
    text-align:center;
    margin-bottom:40px;
}

.gallery-item h3{
    margin-top:15px;
    color:#003366;
}

/* Center entire gallery section */
.gallery-container,
.gallery-section,
main,
section {
    max-width: 1400px;
    margin: 0 auto !important;
}

/* Center plumbing images */
.gallery-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
}

.image-box{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.image-box img,
.gallery-item img{
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
}

/* Remove horizontal scrolling */
html,
body{
    overflow-x:hidden;
}

html, body{
  margin:0 !important;
  padding:0 !important;
  width:100% !important;
  overflow-x:hidden !important;
}

.gallery-grid{
  width:100% !important;
  max-width:100% !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:35px !important;
}

.gallery-item{
  width:90% !important;
  max-width:900px !important;
  margin:0 auto !important;
  text-align:center !important;
}

.image-box{
  width:100% !important;
  max-width:900px !important;
  height:500px !important;
  margin:0 auto !important;
  border:3px solid #ddd !important;
  border-radius:15px !important;
  background:white !important;
  overflow:hidden !important;
  box-shadow:0 5px 15px rgba(0,0,0,0.15) !important;
}

.image-box img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  display:block !important;
}

.gallery-item h3{
  text-align:center !important;
  margin-top:12px !important;
  color:#003366 !important;
}