img{
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

body{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* PAGE BANNER */

.page-banner{
    position:relative;
    background:url('../images/aboutusbanner.webp') center center/cover no-repeat;
    height:350px;
    display:flex;
    align-items:center;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(10,37,64,.75);
}

.banner-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.banner-content h1{
    color:#fff;
    font-size:2.5rem;
    margin-bottom:15px;
	text-align:left;
}

.banner-content p{
    font-size:1.1rem;
	text-align:left;
}

/* ABOUT */

.about-grid{
   
    
    align-items:left;
	
	    display:grid;
    grid-template-columns:300px 1fr;
    gap:50px;
}

.about-image img{
    border-radius:15px;
	width:280px;
	height:280px;
	margin-top:80px;
	
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.section-tag{
    color:#00A8E8;
    font-weight:700;
    letter-spacing:2px;
}

.about-content h2{
    margin:15px 0 25px;
}

.about-content p{
    font-size:16px;
    line-height:1.8;
}
	
/* VISION MISSION */

.vision-mission{
    background:#f8fafc;
}

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

.vm-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.vm-icon{
    font-size:40px;
    color:#00A8E8;
    margin-bottom:20px;
}


/* ====================================
   Vision & Mission
==================================== */

.vision-mission{
    padding:80px 0;
    background:#f8fafc;
}

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

.vm-card{
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:all .4s ease;
}

.vm-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.vm-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    background:#0d6efd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vm-icon i{
    font-size:38px;
    color:#fff;
}

.vm-card h3{
    font-size:28px;
    color:#0f172a;
    margin-bottom:15px;
}

.vm-card p{
    font-size:16px;
    line-height:1.8;
    color:#555;
}
/* ====================================
   Vision & Mission
==================================== */

.vision-mission{
    padding:80px 0;
    background:#f8fafc;
}

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

.vm-card{
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:all .4s ease;
}

.vm-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.vm-icon{
    margin-bottom:25px;
}

.vm-icon img{
    width:90px;
    height:90px;
    object-fit:contain;
    transition:all .4s ease;
}

.vm-card:hover .vm-icon img{
    transform:scale(1.1) rotate(5deg);
}

.vm-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#0f172a;
}

.vm-card p{
    font-size:16px;
    line-height:1.8;
    color:#555;
}
/* STRENGTHS */

.strength-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.strength-card{
    padding:30px;
    background:#fff;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}


/* ====================================
   Core Strengths
==================================== */

.why-about{
    padding:80px 0;
    background:#f8fafc;
}

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

.strength-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;   /* centers heading and text */
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .4s ease;

    display:flex;
    flex-direction:column;
    align-items:center;  /* centers all child elements */
}

.strength-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.strength-icon{
    width:110px;
    height:110px;
    margin:0 auto 20px auto; /* centers horizontally */
    background:#eef6ff;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;
}

.strength-icon img{
    width:75px;
    height:75px;
    object-fit:contain;
    display:block;
    margin:auto;
    transition:all .4s ease;
}

.strength-card:hover .strength-icon img{
    transform:scale(1.15);
}

.strength-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#0f172a;
}

.strength-card p{
    color:#666;
    line-height:1.7;
}



/* CAPABILITIES */

.manufacturing-strength{
    background:#0A2540;
    color:#fff;
}

.manufacturing-strength h2{
    color:#fff;
}

.capabilities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.capabilities-grid div{
    background:rgba(255,255,255,.08);
    padding:20px;
    border-radius:10px;
    text-align:center;
}

/* INDUSTRIES */

.industry-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.industry-list span{
    background:#00A8E8;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
}

/* COMMITMENT */

.commitment{
    text-align:center;
    background:#f8fafc;
}

.commitment p{
    max-width:900px;
    margin:auto;
}

/* CTA */

.about-cta{
    text-align:center;
    background:#F97316;
    color:#fff;
}

.about-cta h2{
    color:#fff;
    margin-bottom:20px;
}

.about-cta p{
    margin-bottom:30px;
}


.cta-section h2{
    color:#ffffff;
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-section p{
    color:#e2e8f0;
    font-size:18px;
    line-height:1.8;
}
.cta-btn{
    background:#0ea5e9;
    color:#fff;
    font-weight:600;
    padding:14px 35px;
    border-radius:30px;
    transition:.3s;
}

.cta-btn:hover{
    background:#0284c7;
    transform:translateY(-3px);
}


/* RESPONSIVE */

@media(max-width:991px){

    .about-grid,
    .vm-grid{
        grid-template-columns:1fr;
    }

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

@media(max-width:768px){

    .strength-grid,
    .capabilities-grid{
        grid-template-columns:1fr;
    }

    .banner-content h1{
        font-size:2.5rem;
    }
}