/* Breadcrumb */

.breadcrumb-area{
background:linear-gradient(120deg, #f41727, #361c7e);
padding:80px 0;
color:white;
text-align:center;
}

.breadcrumb-area h1{
margin:0;
font-size:38px;
}

.breadcrumb{
margin-top:10px;
font-size:14px;
}

.breadcrumb a{
color:white;
text-decoration:none;
opacity:0.8;
}

/* Product Section */

.product-section{
padding:60px 8%;
background:white;
}

.product-container{
display:flex;
gap:50px;
align-items:flex-start;
}

/* Image */

.product-image{
flex:1;
}

.product-image img{
width:100%;
border:1px solid #ddd;
padding:10px;
background:white;
}

/* Content */

.product-content{
flex:1.5;
}

.product-title{
font-size:32px;
margin-bottom:15px;
}

.product-desc{
line-height:1.7;
margin-bottom:20px;
color:#444;
}

/* Feature List */

.product-features{
margin-bottom:30px;
}

.product-features li{
margin-bottom:8px;
}


/* Buttons */

.product-btn{
display:flex;
gap:15px;
}

.btn{
text-decoration:none;
border-radius:4px;
font-size:15px;
}

.btn-enquiry{
background:#361c7e;
color:white;
}

.btn-download{
background:#ff5b5b;
color:white;
}

/* Extra Details */

.product-description h2{
margin-bottom:20px;
}

.product-description p{
margin-top:20px;
line-height:1.7;
color:#555;
}









.enquiry-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
z-index:9999;
}

.enquiry-box{
background:#fff;
padding:30px;
width:380px;
border-radius:6px;
position:relative;
}

.enquiry-box h3{
margin-bottom:15px;
}

.enquiry-box input,
.enquiry-box textarea{
width:100%;
padding:10px;
margin-bottom:12px;
border:1px solid #ccc;
}

.enquiry-box button{
background:#caa302;
color:#fff;
padding:10px;
border:none;
width:100%;
cursor:pointer;
}

.close-btn{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}

/* CTA */

.cta{
background:#caa302;
color:white;
padding:60px 0;
text-align:center;
}

.cta a{
background:white;
color:#007bff;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
margin-top:20px;
display:inline-block;
}

.related-products{
padding:70px 8%;
background:#f9f9f9;
}

.related-products h2{
text-align:center;
margin-bottom:40px;
font-size:32px;
}

.product-card{
background:white;
padding:15px;
text-align:center;
border:1px solid #ddd;
border-radius:5px;
}

.product-card img{
width:100%;
height:180px;
object-fit:cover;
margin-bottom:10px;
}

.product-card h4{
margin:10px 0;
font-size:16px;
}

.product-card a{
display:inline-block;
padding:8px 18px;
background:#361c7e;
color:white;
text-decoration:none;
border-radius:4px;
font-size:14px;
}


.products-btn{
display:flex;
gap:15px;
margin-top:20px;
}

.products-btn .btn{
padding:0px 22px;
font-size:14px;
border-radius:6px;
text-decoration:none;
display:inline-block;
}

.btn-enquiry{
background:#e5b400;
color:#fff;
}

.btn-download{
background:#ff5c5c;
color:#fff;
}





/* Responsive */

@media(max-width:900px){

.product-container{
flex-direction:column;
}

}


/* Contact Cards */

.contact-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:-60px;
}

.contact-card{
background:white;
padding:35px;
text-align:center;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-card i{
font-size:28px;
color:#c33764;
margin-bottom:15px;
}

.contact-card h4{
margin-bottom:10px;
}

/* Form */

.contact-form-section{
margin-top:70px;
}

.contact-form{
background:white;
padding:50px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h2{
text-align:center;
margin-bottom:30px;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:5px;
font-size:14px;
}

.contact-form textarea{
grid-column:1/3;
}

.contact-form button{
margin-top:20px;
background:#c33764;
color:white;
border:none;
padding:14px 35px;
border-radius:5px;
cursor:pointer;
display:block;
margin-left:auto;
margin-right:auto;
}

.contact-form button:hover{
background:#9b2a50;
}

/* Map */

.map{
margin-top:70px;
}

.map iframe{
width:100%;
height:420px;
border:0;
}

/* Responsive */

@media(max-width:992px){

.container{
width:90%;
}

.contact-cards{
grid-template-columns:1fr;
margin-top:30px;
}

.form-grid{
grid-template-columns:1fr;
}

.contact-form textarea{
grid-column:auto;
}

}


/* About */


.absection{
margin-bottom:70px;
}

.absection-title{
text-align:center;
margin-bottom:40px;
}

.absection-title h2{
font-size:30px;
margin-bottom:10px;
}



.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-img img{
width:100%;
border-radius:8px;
}

.about-text p{
line-height:1.8;
color:#555;
}

/* Mission Vision */

.mv-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.mv-box{
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.mv-box i{
font-size:28px;
color:#007bff;
margin-bottom:15px;
}

/* Why Choose */

.features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
text-align:center;
}

.feature-box{
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.feature-box i{
font-size:26px;
color:#007bff;
margin-bottom:10px;
}

/* Certificates */

.certificates{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.certificates img{
width:120px;
}

/* CTA */

.cta{
background:#007bff;
color:white;
padding:60px 0;
text-align:center;
}

.cta a{
background:white;
color:#007bff;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
margin-top:20px;
display:inline-block;
}

/* Responsive */

@media(max-width:992px){

.container{
width:90%;
}

.about-grid{
grid-template-columns:1fr;
}

.mv-grid{
grid-template-columns:1fr;
}

.features{
grid-template-columns:1fr 1fr;
}

}

.gallery-section {
  padding: 60px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

/* White frame like reference site */
.gallery-item {
  border: 10px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

/* 🔥 Animated Border */
.gallery-item::before,
.gallery-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid #ff5e14;
  transition: 0.5s;
}

.gallery-item::before {
  top: 0;
  left: 0;
}

.gallery-item::after {
  bottom: 0;
  right: 0;
}

.gallery-item:hover::before {
  width: 100%;
  height: 100%;
}

.gallery-item:hover::after {
  width: 100%;
  height: 100%;
}

/* Zoom effect */
.gallery-item:hover img {
  transform: scale(1.1);
}

.market-box {
  text-align: center;
}

.market-box a {
  display: inline-block;
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  color: #ffffff;
  background-color: #361c7e;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 20px;
}