/* LEFT SIDE */
.gno-balance-left {
  position: relative;
  height: 100%;
  min-height: 620px;
  padding: 100px 80px;
  color: #fff;
  background: url("../img/content/sustainable-img.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.gno-balance-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

/* TAG */
.gno-balance-tag {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.gno-balance-line {
  width: 70px;
  height: 2px;
  background: #fff;
  opacity: 0.8;
}

/* TITLE */
.gno-balance-title {
  font-size: 38px;
  line-height: 1.45;
  font-weight: 400;
  color: #fff;
}

.gno-balance-title strong {
  font-weight: 700;
}

/* RIGHT SIDE */
.gno-balance-right {
  padding: 90px 80px;
  background: #eef1f5;
  color: #4a5560;
  font-size: 17px;
  line-height: 1.9;
}

.gno-balance-right p {
  margin-bottom: 26px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gno-balance-left,
  .gno-balance-right {
    padding: 60px 30px;
    min-height: auto;
  }

  .gno-balance-title {
    font-size: 28px;
  }
}

/* column divider */
.feature-col{
  border-right:1px solid #dcdcdc;
}
.feature-col:last-child{
  border-right:none;
}

/* card */
.feature-box{
  padding:70px 40px 50px;
  height:100%;
  position:relative;
}

.feature-box .icon-box{
  width:48px;
  height:48px;
  background: #016b57;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom:26px;   /* gap between icon and heading */
}

/* Make image behave properly */
.feature-box .icon-box img{
  
  height:auto;
  display:block;
  filter: invert(1);
}

/* TITLE spacing fixed */
.feature-box h3{
  font-size:30px;
  font-weight:600;
  line-height:1.15;
  margin:0 0 14px;   /* tighter gap */
}

/* TEXT */
.feature-box p{
  color:#000;
  font-size:16px;
  line-height:1.7;
  margin:0;
  max-width:300px;
}

/* responsive */
@media(max-width:991px){
  .feature-col{
    border-right:none;
    border-bottom:1px solid #dcdcdc;
  }
  .feature-col:last-child{
    border-bottom:none;
  }
}
/* ===== Welcome Section ===== */

.welcome-section{
    padding:80px 0;
    background:#f9f9f9;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

.welcome-content{
    text-align:center;
}

.welcome-content h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:25px;
    color:#222;
}

.welcome-content h2 span{
    color:#016B57;
}

.welcome-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:18px;
}

.read-more-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 28px;
    background:#016B57;
    text-decoration:none;
    border-radius:4px;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
    color:#fff;
}

.read-more-btn:hover{
    background:#000;
    color:#fff!important;
}
/* ===== Product Range Section ===== */

.product-range{
    padding:80px 0;
    background:#ffffff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    font-size:16px;
    color:#000;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* Grid */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.product-card{
    background:#f8f8f8;
    padding:30px;
    border-radius:6px;
    transition:0.3s;
    border:1px solid #eee;
}

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

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

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* Tablet */

@media (max-width:992px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media (max-width:600px){

.section-title h2{
    font-size:28px;
}

.product-grid{
    grid-template-columns:1fr;
}

.product-card{
    padding:25px;
}

}
/* ===== Industries Section ===== */

.industries-section{
    padding:80px 0;
    background:#f9f9f9;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.industries-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
}

/* Left Content */

.industries-text{
    flex:1;
}

.industries-text h2{
    font-size:36px;
    margin-bottom:20px;
    color:#016B57;
}

.industries-text p{
    font-size:16px;
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

/* List */

.industries-list{
    list-style:none;
    padding:0;
}

.industries-list li{
    font-size:16px;
    margin-bottom:12px;
    padding-left:22px;
    position:relative;
}

.industries-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#016B57;
    font-weight:bold;
}

/* Right Image */

.industries-image{
    flex:1;
}

.industries-image img{
    width:100%;
    border-radius:6px;
}

/* Tablet */

@media (max-width:992px){

.industries-wrapper{
    flex-direction:column;
    text-align:center;
}

.industries-list li{
    padding-left:0;
}

.industries-list li::before{
    display:none;
}

}

/* Mobile */

@media (max-width:600px){

.industries-text h2{
    font-size:28px;
}

.industries-text p{
    font-size:15px;
}

}
/* ===== CTA Section ===== */

.cta-section{
    padding:80px 20px;

    
    text-align:center;
    color:#000;
}

.container{
    max-width:1000px;
    margin:auto;
}

.cta-content h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
    color: #016B57;
}

.cta-content p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:30px;
    color:#000;
}

.cta-btn{
    display:inline-block;
    padding:14px 32px;
    background:#016B57;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
    transition:0.3s;
}

.cta-btn:hover{
    background:#111;
    color:#fff !important;
}

/* Tablet */

@media (max-width:768px){

.cta-content h2{
    font-size:28px;
}

.cta-content p{
    font-size:16px;
}

}

/* Mobile */

@media (max-width:480px){

.cta-section{
    padding:60px 15px;
}

.cta-content h2{
    font-size:24px;
}

.cta-btn{
    padding:12px 25px;
}

}
.services-section{
padding:90px 0;
background:#f8f8f8;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Title */

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title h2{
font-size:40px;
color:#016B57;
margin-bottom:15px;
}

.section-title p{
max-width:700px;
margin:auto;
color:#000;
line-height:1.7;
}

/* Row */

.service-row{
display:flex;
align-items:center;
gap:60px;
margin-bottom:80px;
}

.service-row.reverse{
flex-direction:row-reverse;
}

/* Image */

.service-image{
flex:1;
position:relative;
}

.service-image img{
width:100%;
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
transition:0.4s;
}

.service-image img:hover{
transform:scale(1.05);
}

/* Text */

.service-text{
flex:1;
}

.service-text h3{
font-size:28px;
margin-bottom:15px;
color:#016B57;
}

.service-text p{
color:#000;
line-height:1.7;
font-size:16px;
}

/* Tablet */

@media(max-width:900px){

.service-row{
flex-direction:column;
text-align:center;
}

.service-row.reverse{
flex-direction:column;
}

}

/* Mobile */

@media(max-width:500px){

.section-title h2{
font-size:30px;
}

.service-text h3{
font-size:22px;
}

}
.about-section{
padding:70px 20px;
background:#f7f7f7;
font-family:Arial, Helvetica, sans-serif;
}

.about-container{
max-width:1100px;
margin:auto;

display:flex;
align-items:flex-start;

gap:40px;
flex-wrap:wrap;
}

.about-image{
flex:1;
}

.about-image img{
width:100%;

border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.about-content{
flex:1;
}

.about-content h2{
font-size:30px;
margin-bottom:20px;
color:#016B57;
}

.about-content p{
font-size:16px;
line-height:1.8;
color:#444;
margin-bottom:15px;
text-align: justify;
}

/* Mobile Responsive */

@media (max-width:768px){

.about-container{
flex-direction:column;
text-align:center;
}

.about-content h2{
font-size:28px;
}

}
.supply-section{
padding:70px 20px;
background:#f8f8f8;
font-family:Arial, Helvetica, sans-serif;
}

.supply-container{
max-width:900px;
margin:auto;
text-align:center;
}

.supply-container h2{
font-size:34px;
margin-bottom:20px;
color:#016B57;
}

.supply-container p{
font-size:16px;
line-height:1.8;
color:#000;
margin-bottom:15px;
}

/* Mobile */

@media (max-width:768px){

.supply-container h2{
font-size:26px;
}

.supply-container p{
font-size:15px;
}

}.oil-product{
background:#e5f2e8;
border-radius:6px;
overflow:hidden;
max-width:800px;
margin:auto;
}

.oil-header{
background:#016B57;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 30px;
}

.oil-title h2{
margin:0;
font-size:32px;
letter-spacing:2px;
color: #fff;
}

.oil-title h4{
margin:5px 0 0 0;
font-weight:400;
color: #fff;
}

.oil-truck img{
width:120px;
}

.oil-table{
width:100%;
border-collapse:collapse;
}

.oil-table tr{
background:#64998F;
}

.oil-table td{
padding:14px 40px;
font-size:18px;
border-bottom:4px solid #ffffff;
color: #000;
}

.oil-table td:last-child{
text-align:right;
}
.portfolio-section{
padding:80px 20px;
background:#ffffff;
font-family:Arial, Helvetica, sans-serif;
}

.portfolio-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.portfolio-container h2{
font-size:34px;
margin-bottom:15px;
color:#016B57;
}

.portfolio-intro{
max-width:800px;
margin:auto;
margin-bottom:40px;
color:#000;
line-height:1.7;
}

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

.portfolio-item{
background:#f7f7f7;
padding:30px 20px;
border-radius:8px;
transition:0.3s;
}

.portfolio-item:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.portfolio-item i{
font-size:35px;
color:#016B57;
margin-bottom:15px;
}

.portfolio-item h4{
font-size:17px;
color:#000;
}

.portfolio-text{
max-width:850px;
margin:auto;
color:#000;
line-height:1.8;
}

/* Mobile */

@media (max-width:768px){

.portfolio-container h2{
font-size:26px;
}

.portfolio-item{
padding:25px 15px;
}

}
.trade-section{
padding:70px 20px;
background:#f7f7f7;
font-family:Arial, Helvetica, sans-serif;
}

.trade-container{
max-width:900px;
margin:auto;
text-align:center;
}

.trade-container h2{
font-size:34px;
margin-bottom:20px;
color:#016B57;
}

.trade-container p{
font-size:16px;
line-height:1.8;
color:#000;
margin-bottom:15px;
}

/* Mobile Responsive */
@media (max-width:768px){
.trade-container h2{
font-size:28px;
}

.trade-container p{
font-size:15px;
line-height:1.7;
}
}
.commitment-section{
padding:70px 20px;
background:#ffffff;
font-family:Arial, Helvetica, sans-serif;
}

.commitment-container{
max-width:900px;
margin:auto;
text-align:center;
}

.commitment-container h2{
font-size:34px;
margin-bottom:20px;
color:#016B57;
}

.commitment-container p{
font-size:16px;
line-height:1.8;
color:#000;
margin-bottom:15px;
}

/* Mobile Responsive */
@media (max-width:768px){
.commitment-container h2{
font-size:28px;
}

.commitment-container p{
font-size:15px;
line-height:1.7;
}
}
.why-section{
padding:80px 20px;
background:#f7f7f7;
font-family:Arial, Helvetica, sans-serif;
}

.why-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.why-container h2{
font-size:34px;
margin-bottom:15px;
color:#016B57;
}

.why-intro{
max-width:800px;
margin:auto;
margin-bottom:50px;
line-height:1.7;
color:#000;
}

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

.why-box{
background:#ffffff;
padding:30px 25px;
border-radius:8px;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.why-box:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.why-box i{
font-size:35px;
color:#016B57;
margin-bottom:15px;
}

.why-box h4{
font-size:18px;
margin-bottom:10px;
color:#222;
}

.why-box p{
font-size:14px;
color:#555;
line-height:1.6;
}

/* Mobile */

@media (max-width:768px){

.why-container h2{
font-size:26px;
}

.why-intro{
font-size:15px;
}

}
.reliable-section{
padding:70px 20px;
background:#f7f7f7;
font-family:Arial, Helvetica, sans-serif;
}

.reliable-container{
max-width:900px;
margin:auto;
text-align:center;
}

.reliable-container h2{
font-size:34px;
margin-bottom:20px;
color:#016B57;
}

.reliable-container p{
font-size:16px;
line-height:1.8;
color:#000;
margin-bottom:15px;
}

/* Mobile Responsive */
@media (max-width:768px){
.reliable-container h2{
font-size:28px;
}

.reliable-container p{
font-size:15px;
line-height:1.7;
}
}
.product-range-section{
padding:70px 20px;
background:#ffffff;
font-family:Arial, Helvetica, sans-serif;
}

.product-range-container{
max-width:900px;
margin:auto;
text-align:center;
}

.product-range-container h2{
font-size:34px;
margin-bottom:20px;
color:#016B57;
}

.product-range-container p{
font-size:16px;
line-height:1.8;
color:#000;
margin-bottom:15px;
}

/* Mobile Responsive */
@media (max-width:768px){
.product-range-container h2{
font-size:28px;
}

.product-range-container p{
font-size:15px;
line-height:1.7;
}
}
.trade-exp-section{
padding:70px 20px;
background:#f7f7f7;
font-family:Arial, Helvetica, sans-serif;
}

.trade-exp-container{
max-width:900px;
margin:auto;
text-align:center;
}

.trade-exp-container h2{
font-size:34px;
margin-bottom:20px;
color:#016B57;
}

.trade-exp-container p{
font-size:16px;
line-height:1.8;
color:#000;
margin-bottom:15px;
}

/* Mobile Responsive */
@media (max-width:768px){
.trade-exp-container h2{
font-size:28px;
}

.trade-exp-container p{
font-size:15px;
line-height:1.7;
}
}
.customer-service-section{
padding:70px 20px;
background:#ffffff;
font-family:Arial, Helvetica, sans-serif;
}

.customer-service-container{
max-width:900px;
margin:auto;
text-align:center;
}

.customer-service-container h2{
font-size:34px;
margin-bottom:20px;
color:#016B57;
}

.customer-service-container p{
font-size:16px;
line-height:1.8;
color:#000;
margin-bottom:15px;
}

/* Mobile Responsive */
@media (max-width:768px){
.customer-service-container h2{
font-size:28px;
}

.customer-service-container p{
font-size:15px;
line-height:1.7;
}
}
.partnership-section{
padding:70px 20px;
background:#f7f7f7;
font-family:Arial, Helvetica, sans-serif;
}

.partnership-container{
max-width:900px;
margin:auto;
text-align:center;
}

.partnership-container h2{
font-size:34px;
margin-bottom:20px;
color:#016B57;
}

.partnership-container p{
font-size:16px;
line-height:1.8;
color:#000;
margin-bottom:15px;
}

/* Mobile Responsive */
@media (max-width:768px){
.partnership-container h2{
font-size:28px;
}

.partnership-container p{
font-size:15px;
line-height:1.7;
}
}/* PRODUCT SECTION LAYOUT */

.product-section .container{
display:flex;
gap:40px;
align-items:flex-start;
}

/* LEFT IMAGE */

.product-image{
width:40%;
}

.product-image img{
width:100%;
height:auto;
display:block;
border-radius:8px;
}

/* RIGHT CONTENT */

.product-content{
width:60%;
}

/* MOBILE RESPONSIVE */

@media(max-width:992px){

.product-section .container{
flex-direction:column;
}

.product-image,
.product-content{
width:100%;
}

}
.feature-col{
    padding:15px;
}

.feature-box{
    background:#ffffff;
    padding:35px 25px;
    border-radius:10px;
    text-align:center;
    height:100%;
    transition:all 0.4s ease;
    border:1px solid #f1f1f1;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.icon-box{
    width:65px;
    height:65px;
    margin:auto;
    margin-bottom:20px;
    background:#f3faf8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box img{
    width:26px;
}

.feature-box h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.feature-box p{
    font-size:15px;
    color:#666;
    line-height:1.6;
}    
.product-card{
background:#fff;
padding:30px;
text-align:center;
border-radius:8px;
border:1px solid #eee;
transition:0.4s;
height:100%;
}

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

.product-icon{
width:70px;
height:70px;
margin:auto;
margin-bottom:18px;
background:#f3faf8;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.product-icon i{
font-size:28px;
color:#016B57;
}

.product-btn{
display:inline-block;
margin-top:10px;
padding:10px 22px;
background:#016B57;
color:#fff;
text-decoration:none;
border-radius:4px;
font-size:14px;
}

.product-btn:hover{
background:#000;
color:#fff !important;
}
/* Row Layout */
 .product-card{
    height:100%;
    display:flex;
    flex-direction:column;
    text-align:center;
    padding:35px 25px;
    border:1px solid #e6e6e6;
    border-radius:10px;
    background:#fff;
}

.product-card p{
    flex-grow:1;
}

.product-btn{
    margin-top:auto;
}
.service-row{

display:flex;

align-items:flex-start;   /* IMAGE AND TEXT START SAME LINE */

gap:60px;

margin-bottom:80px;

}
 
/* Reverse Layout */
 
.service-row.reverse{

flex-direction:row-reverse;

}
 
/* Image */
 
.service-image{

flex:1;

}
 
.service-image img{

width:100%;

border-radius:12px;

box-shadow:0 15px 35px rgba(0,0,0,0.15);

transition:0.4s;

display:block;

}
 
/* Text */
 
.service-text{

flex:1;

}
 
.service-text h3{

font-size:28px;

margin-bottom:15px;

color:#016B57;

}
 
.service-text p{

color:#000;

line-height:1.7;

font-size:16px;
text-align: justify;
}
 .footer-white-box{
    background:#ffffff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.footer-white-box p{
    color:#333;
    font-size:15px;
    line-height:1.7;
}
/* Section spacing */

.section{
padding:80px 0;
}

.section-title{
font-size:32px;
font-weight:700;
margin-bottom:25px;
color:#016B57;
position:relative;
}
/* 
.section-title::after{
content:"";
width:60px;
height:3px;
background:#016B57;
display:block;
margin-top:10px;
} */


/* Light Background */

.bg-light{
background:#f7f9fb;
}


/* Grid layout */

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


/* Card boxes */

.box{
background:#fff;
padding:30px;
border-radius:8px;
box-shadow:0 5px 25px rgba(0,0,0,0.06);
transition:all 0.3s ease;
border-top:4px solid transparent;
}

.box:hover{
transform:translateY(-8px);
border-top:4px solid #016B57;
box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

.box h4{
font-size:20px;
margin-bottom:10px;
color:#016B57;
}


/* Partner List */

.partner-list{
margin-top:20px;
padding-left:18px;
line-height:2;
}

.partner-list li{
margin-bottom:5px;
}


/* CTA Section */

.distributor-cta{
background:linear-gradient(135deg,#016B57,#014e40);
color:#fff;
text-align:center;
border-radius:10px;
}

.distributor-cta h2{
color:#fff;
margin-bottom:10px;
}

.distributor-cta p{
max-width:700px;
margin:auto;
opacity:0.9;
}


/* Button */

.btn-primary{
background:#fff;
border:none;
padding:14px 32px;
color:#000;
font-size:16px;
border-radius:30px;
cursor:pointer;
margin-top:20px;
transition:all 0.3s ease;
}

.btn-primary:hover{
background:#000;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
color: #fff;
}


/* Popup Form */

.popup-form{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:9999;
animation:fadeIn 0.3s ease;
}


/* Popup Box */

.popup-content{
background:#fff;
width:90%;
max-width:520px;
margin:80px auto;
padding:35px;
border-radius:10px;
position:relative;
box-shadow:0 15px 50px rgba(0,0,0,0.3);
animation:popupScale 0.3s ease;
}

.popup-content h2{
margin-bottom:20px;
color:#016B57;
}


/* Close Button */

.close-btn{
position:absolute;
top:12px;
right:15px;
font-size:26px;
cursor:pointer;
color:#555;
}

.close-btn:hover{
color:#000;
}


/* Form Fields */

.popup-content input,
.popup-content select,
.popup-content textarea{
width:100%;
padding:12px 14px;
margin-bottom:14px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
transition:0.2s;
}

.popup-content input:focus,
.popup-content select:focus,
.popup-content textarea:focus{
border-color:#016B57;
outline:none;
box-shadow:0 0 5px rgba(1,107,87,0.3);
}


/* Submit Button */

.popup-content button{
background:#016B57;
color:#fff;
border:none;
padding:12px 25px;
border-radius:6px;
font-size:15px;
cursor:pointer;
transition:0.3s;
}

.popup-content button:hover{
background:#014e40;
}


/* Animations */

@keyframes fadeIn{
from{opacity:0}
to{opacity:1}
}

@keyframes popupScale{
from{
transform:scale(0.9);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}


/* Responsive */

@media(max-width:768px){

.section{
padding:60px 0;
}

.section-title{
font-size:26px;
}

.popup-content{
margin:50px 20px;
padding:25px;
}

}
.industries-section{
padding:80px 0;
}

.section-heading{
max-width:800px;
margin:auto;
margin-bottom:60px;
}

.section-heading h2{
font-size:34px;
font-weight:700;
margin-bottom:15px;
color:#016B57;
}

.section-heading p{
color:#666;
line-height:1.7;
}

.industries-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.industry-card{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 8px 30px rgba(0,0,0,0.08);
transition:all 0.3s ease;
border-bottom:4px solid transparent;
}

.industry-card:hover{
transform:translateY(-8px);
border-bottom:4px solid #016B57;
box-shadow:0 12px 40px rgba(0,0,0,0.15);
}

.industry-icon{
font-size:36px;
color:#016B57;
margin-bottom:15px;
}

.industry-card h4{
font-size:20px;
margin-bottom:10px;
color:#016B57;
}

.industry-card p{
font-size:15px;
color:#666;
line-height:1.7;
}
.industry-btn{
display:inline-block;
margin-top:20px;
padding:12px 28px;
background:#016B57;
color:#fff;
text-decoration:none;
border-radius:30px;
font-weight:600;
transition:all 0.3s ease;
}

.industry-btn:hover{
background:#000;
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,0,0,0.2);
color:#fff !important;
}