/* ---------------- RESET ---------------- */ 

*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:'Inter',sans-serif;
background:#F5F7FB;
color:#2d3748;
line-height:1.6;
}

h1,h2,h3{
font-family:'Space Grotesk',sans-serif;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* ---------------- HERO ---------------- */

.hero{
background:linear-gradient(135deg,#5878BA,#5AB8C1);
color:white;
padding:80px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}

.hero h1{
font-size:46px;
margin-bottom:20px;
}

.hero p{
margin-bottom:20px;
}

.hero ul{
padding-left:18px;
margin-top:10px;
}

.hero li{
margin-bottom:8px;
}

/* ---------------- FORM ---------------- */

.partner-form{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.partner-form h3{
margin-bottom:15px;
text-align:center;
color:#1F2A44;
}

.partner-form input{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:6px;
}

.partner-form button{
width:100%;
padding:12px;
border:none;
background:#5878BA;
color:white;
font-weight:600;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.partner-form button:hover{
background:#1F2A44;
}

.partner-form textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:6px;

font-family:'Inter',sans-serif;
font-size:14px;

min-height:110px;   /* 🔥 KEY FIX */
line-height:1.5;

resize:vertical;
display:block;

}

/* ---------------- CERT STRIP ---------------- */

.cert-strip{
background:white;
padding:30px 0;
border-bottom:1px solid #e5e7eb;
}

.cert-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
font-weight:600;
color:#5878BA;
}

/* ---------------- SECTIONS ---------------- */

.section{
padding:80px 0;
}

.section-title{
text-align:center;
font-size:34px;
margin-bottom:15px;
}

.section-subtitle{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:50px;
color:#667085;
}

/* ---------------- STATS ---------------- */

.stats{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
text-align:center;
margin-top:30px;
}

.stat-number{
font-size:40px;
font-weight:700;
color:#5878BA;
}

.stat-title{
margin-top:8px;
}

/* ---------------- OEM FINAL (LOCKED) ---------------- */

.oem-section{
background:#1F2A44;
color:white;
}

.oem-section h2{
color:white;
text-align:center;
margin-bottom:10px;
}

.oem-subtext{
color:#cbd5e1;
font-size:15px;
text-align:center;
margin-bottom:40px;
}

/* GRID — FORCE CONTROL */
.oem-grid{
display:grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap:40px;
margin-top:50px;
width:100%;
}

/* CARD */
.oem-card{
background: rgba(255,255,255,0.95);
padding:40px 30px;
border-radius:16px;
text-align:center;
border:1px solid rgba(255,255,255,0.15);
box-shadow:0 10px 30px rgba(0,0,0,0.08);

display:flex;
align-items:center;
justify-content:center;

height:140px;
width:100%; /* IMPORTANT */

transition: all 0.3s ease;
}

/* HOVER CARD */
.oem-card:hover{
transform: translateY(-8px) scale(1.02);
box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.oem-card img{
max-width:180px;
max-height:70px;
width:auto;
height:auto;
object-fit:contain;

/* FORCE COLOR */
filter: none !important;
opacity:1;

transition: all 0.3s ease;
}

/* HOVER IMAGE */
.oem-card:hover img{
filter: grayscale(100%);
opacity:0.7;
transform: scale(1.05);
}

/* ---------------- METHOD ---------------- */

.method-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
margin-top:40px;
}

.method-card{
background:white;
padding:20px;
border-radius:10px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-weight:600;
}

/* ---------------- BENEFITS ---------------- */

.benefit-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.benefit-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ---------------- CONTACT ---------------- */

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.contact-card{
background:white;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ---------------- CTA ---------------- */

.cta{
background:#1F2A44;
color:white;
padding:70px 0;
text-align:center;
}

.cta h2{
font-size:32px;
margin-bottom:15px;
}

.cta p{
margin-bottom:25px;
}

.btn{
display:inline-block;
padding:12px 26px;
background:#5878BA;
color:white;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn:hover{
background:#1F2A44;
}

/* ---------------- FOOTER ---------------- */

footer{
background:#111827;
color:#d1d5db;
padding:50px 0;
text-align:center;
}

footer p{
margin:8px 0;
font-size:14px;
}

.footer-links{
margin-top:15px;
}

.footer-links a{
color:#9ca3af;
text-decoration:none;
margin:0 10px;
font-size:14px;
}

.footer-links a:hover{
color:white;
}

.social-bar{
margin-top:20px;
}

.social-bar a{
display:inline-flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
margin:0 5px;
border-radius:50%;
background:#1f2937;
color:#9ca3af;
}

.social-bar a:hover{
background:#5878BA;
color:white;
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:992px){

.hero-grid{
grid-template-columns:1fr;
}

.cert-grid{
grid-template-columns:repeat(2,1fr);
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.oem-grid{
grid-template-columns:repeat(2,1fr);
}

.method-grid{
grid-template-columns:repeat(2,1fr);
}

.benefit-grid{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

.navbar{
flex-direction:column;
height:auto;
padding:15px 0;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
margin-top:10px;
}

.about-grid{
grid-template-columns:1fr;
}

}

/* Mobile */

@media (max-width:576px){

.oem-grid{
grid-template-columns:1fr;
}

.oem-card{
height:120px;
padding:25px;
}

.oem-card img{
max-width:140px;
max-height:50px;
}

}

/* ABOUT IMPROVED DESIGN */

.about-features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.about-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s ease;
}

.about-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.about-card h3{
margin-bottom:10px;
color:#1F2A44;
font-size:18px;
}

.about-card p{
color:#667085;
font-size:14px;
}

.about-box{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-top:20px; /* reduced */
}

.about-highlight{
background:linear-gradient(135deg,#5878BA,#5AB8C1);
color:white;
padding:30px;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
transition:0.3s ease;
}

.about-highlight:hover{
transform:translateY(-5px);
box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

.about-highlight h3{
margin-bottom:10px;
font-size:20px;
}

.about-highlight p{
font-size:14px;
line-height:1.6;
color:#f1f5f9;
}

/* ABOUT GRID FIX */
.about-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:50px;
align-items:start;
}

/* FIX RIGHT SIDE */
.about-box{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-top:20px;
}

.about-highlight{
min-height:140px;
display:flex;
flex-direction:column;
justify-content:center;
}

/* RESPONSIVE */
@media(max-width:992px){
.about-features{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:576px){
.about-features{
grid-template-columns:1fr;
}
}

@media(max-width:768px){
.about-box{
grid-template-columns:1fr;
}
}

.logo{
display:flex;
align-items:center;
height:100%;
}

.logo img{
height:48px;
max-width:100%;
width:auto;
display:block;
}

.contact-card a,
.contact-card a:visited,
.contact-card a:active {
color: #333 !important;   /* or your text color */
text-decoration: none !important;
font-family: inherit;
}

.contact-card a:hover {
    text-decoration: underline;
}

