*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#ffffff;
    color:#222;
}

/* Container */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

.main-header{
    background:#C1121F;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown{
    from{ transform:translateY(-100%); }
    to{ transform:translateY(0); }
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:22px;
    font-weight:700;
    color:#fff;
}

.logo span{
    color:#F4B400;
}

.nav-menu{
    display:flex;
    gap:25px;
}

.nav-menu a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#fff;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

.call-btn{
    background:#fff;
    color:#C1121F !important;
    padding:8px 16px;
    border-radius:4px;
    font-weight:600;
}

.call-btn:hover{
    background:#F4B400;
    color:#C1121F !important;
}

/* Hamburger */
.hamburger{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    padding:120px 0;
    text-align:center;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn{
    from{ opacity:0; }
    to{ opacity:1; }
}

.hero h1{
    font-size:42px;
    color:#C1121F;
    margin-bottom:20px;
}

.primary-btn{
    background:#C1121F;
    color:#fff;
    padding:12px 30px;
    text-decoration:none;
    border-radius:4px;
    transition:0.3s;
}

.primary-btn:hover{
    background:#F4B400;
    color:#C1121F;
}

/* ================= SECTION ================= */

.section{
    padding:80px 0;
    text-align:center;
}

/* ================= FOOTER ================= */

.main-footer{
    background:#C1121F;
    color:#fff;
    padding-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:40px;
}

.footer-col h3, .footer-col h4{
    margin-bottom:15px;
}

.footer-col a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:8px;
    transition:0.3s;
}

.footer-col a:hover{
    color:#F4B400;
    padding-left:5px;
}

.whatsapp-btn{
    display:inline-block;
    background:#F4B400;
    color:#C1121F !important;
    padding:8px 18px;
    border-radius:4px;
    font-weight:600;
}

.footer-bottom{
    background:#a50f1a;
    text-align:center;
    padding:15px;
    font-size:14px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .nav-menu{
        position:absolute;
        top:70px;
        right:0;
        background:#C1121F;
        width:100%;
        flex-direction:column;
        text-align:center;
        display:none;
        padding:20px 0;
    }

    .nav-menu.active{
        display:flex;
    }

    .hamburger{
        display:block;
    }

    .hero h1{
        font-size:28px;
    }
}
/* ================= HERO SECTION ================= */

.hero{
    position:relative;
    height:90vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('../images/bg.png') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

/* Overlay Gradient Layer */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(193,18,31,0.75),
        rgba(0,0,0,0.65)
    );
    z-index:1;
}

/* Content Box - Glass Effect */
.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:50px 40px;
    background:rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius:16px;
    animation:heroFadeUp 1s ease forwards;
    opacity:0;
}

/* Animation */
@keyframes heroFadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Title */
.hero-title{
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.2;
    text-shadow:0 6px 20px rgba(0,0,0,0.6);
}

/* Subtitle */
.hero-subtitle{
    font-size:20px;
    margin-bottom:40px;
    opacity:1;
    text-shadow:0 3px 12px rgba(0,0,0,0.6);
}

/* Buttons Wrapper */
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Primary Button */
.btn-primary{
    background:#fff;
    color:#C1121F;
    padding:14px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:all 0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover{
    background:#F4B400;
    color:#C1121F;
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,0.3);
}

/* Secondary Button */
.btn-secondary{
    background:#F4B400;
    color:#C1121F;
    padding:14px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:all 0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary:hover{
    background:#fff;
    color:#C1121F;
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,0.3);
}

/* ================= MOBILE HERO ================= */

@media(max-width:768px){

    .hero{
        height:auto;
        padding:110px 20px;
    }

    .hero-content{
        padding:35px 25px;
    }

    .hero-title{
        font-size:30px;
    }

    .hero-subtitle{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }
}
/* ================= PREMIUM ABOUT SECTION ================= */

.about-section{
    padding:100px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* Left Content */
.about-content h2{
    font-size:36px;
    color:#C1121F;
    margin-bottom:20px;
}

.about-highlight{
    font-size:18px;
    font-weight:600;
    color:#F4B400;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
    line-height:1.7;
    color:#444;
}

.about-points{
    margin-bottom:30px;
}

.about-points div{
    margin-bottom:10px;
    font-weight:500;
}

/* Button */
.about-btn{
    display:inline-block;
    background:#C1121F;
    color:#fff;
    padding:12px 30px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.about-btn:hover{
    background:#F4B400;
    color:#C1121F;
    transform:translateY(-3px);
}

/* Right Image */
.about-image img{
    width:100%;
    border-radius:10px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

.about-image img:hover{
    transform:scale(1.05);
}

/* Scroll Animation */
.about-content,
.about-image{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.about-section.show .about-content,
.about-section.show .about-image{
    opacity:1;
    transform:translateY(0);
}

/* ================= MOBILE VIEW ================= */

@media(max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-content h2{
        font-size:26px;
    }

    .about-section{
        padding:70px 0;
    }

}
/* ================= PRODUCTS SECTION ================= */

/* ===============================
   PRODUCTS SECTION - PREMIUM
================================= */
.products-section {
    padding: 110px 20px;
    background: #ffffff;
}

.products-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.products-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Image Wrapper */
.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

/* Image */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Image Zoom on Hover */
.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Red Top Accent Line */
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: #C1121F;
    transition: 0.4s ease;
}

.product-card:hover::before {
    width: 100%;
}

/* Text Content */
.product-card h3 {
    font-size: 20px;
    margin: 25px 20px 10px;
    color: #C1121F;
}

.product-card p {
    font-size: 15px;
    color: #555;
    margin: 0 20px 25px;
    line-height: 1.6;
}

/* Button */
.product-btn {
    display: inline-block;
    margin: 0 20px 30px;
    padding: 10px 20px;
    background: #C1121F;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s ease;
}

.product-btn:hover {
    background: #a30e18;
    transform: translateY(-3px);
}
/* ===============================
   RESPONSIVE - PRODUCTS SECTION
================================= */

/* Large Screens (1400px+) */
@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Laptops (1200px and below) */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-image {
        height: 220px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .products-section {
        padding: 80px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-image {
        height: 200px;
    }

    .product-card h3 {
        font-size: 18px;
    }

    .product-card p {
        font-size: 14px;
    }

    .product-btn {
        width: calc(100% - 40px);
        text-align: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .product-image {
        height: 180px;
    }

    .product-card h3 {
        font-size: 17px;
    }

    .product-card p {
        font-size: 13px;
    }
}
/* ================= ADVANCED PROCESS ANIMATION ================= */

.process-section{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* Wrapper */
.process-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    position:relative;
    margin-top:60px;
}

/* Animated Line */
.process-wrapper::before{
    content:'';
    position:absolute;
    top:40px;
    left:5%;
    width:0%;
    height:4px;
    background:#C1121F;
    z-index:0;
    transition:width 1.2s ease;
}

/* When visible */
.process-section.show .process-wrapper::before{
    width:90%;
}

/* Step Base */
.process-step{
    background:#f9f9f9;
    padding:30px 20px;
    border-radius:10px;
    text-align:center;
    flex:1;
    position:relative;
    z-index:1;
    transition:0.4s ease;
    transform:translateY(60px);
    opacity:0;
}

/* Stagger animation */
.process-section.show .process-step:nth-child(1){
    transition-delay:0.2s;
    transform:translateY(0);
    opacity:1;
}
.process-section.show .process-step:nth-child(2){
    transition-delay:0.4s;
    transform:translateY(0);
    opacity:1;
}
.process-section.show .process-step:nth-child(3){
    transition-delay:0.6s;
    transform:translateY(0);
    opacity:1;
}
.process-section.show .process-step:nth-child(4){
    transition-delay:0.8s;
    transform:translateY(0);
    opacity:1;
}

/* Hover */
.process-step:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(193,18,31,0.2);
}

/* Circle */
.step-circle{
    width:70px;
    height:70px;
    background:#C1121F;
    color:#fff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 20px;
    transition:0.3s ease;
}

.process-step:hover .step-circle{
    background:#F4B400;
    color:#C1121F;
}

/* Mobile */
@media(max-width:992px){

    .process-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .process-wrapper::before{
        display:none;
    }

    .process-step{
        transform:none !important;
        opacity:1 !important;
    }
}
/* ================= WHY CHOOSE US ================= */

.why-section{
    padding:100px 0;
    background:#f9f9f9;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:30px;
    margin-top:60px;
}

/* Card */
.why-card{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
    transform:translateY(50px);
    opacity:0;
}

.why-section.show .why-card{
    transform:translateY(0);
    opacity:1;
}

/* Hover */
.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(193,18,31,0.2);
}

/* Icon Circle */
.why-icon{
    width:70px;
    height:70px;
    background:#C1121F;
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 20px;
    transition:0.3s ease;
}

.why-card:hover .why-icon{
    background:#F4B400;
    color:#C1121F;
}

.why-card h3{
    color:#C1121F;
    margin-bottom:12px;
}

.why-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* Mobile */
@media(max-width:768px){
    .why-section{
        padding:70px 0;
    }
}
/* ================= STATS SECTION ================= */

/* ===============================
   STATS SECTION
================================= */
.stats-section {
    padding: 100px 20px;
    background: #C1121F; /* Industrial Red */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.stat-box {
    background: rgba(255,255,255,0.08);
    padding: 40px 20px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    transition: 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h2 {
    font-size: 52px;
    font-weight: 700;
    color: #F4B400; /* Gold */
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.stat-box p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
}
/* Mobile */
@media(max-width:768px){
    .stats-section{
        padding:70px 0;
    }

    .stat-box h2{
        font-size:36px;
    }
}
/* ================= INDUSTRIES SECTION ================= */

.industries-section{
    padding:100px 0;
    background:#ffffff;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:30px;
    margin-top:60px;
}

.industry-card{
    background:#f9f9f9;
    padding:40px 20px;
    text-align:center;
    border-radius:12px;
    transition:0.4s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transform:translateY(40px);
    opacity:0;
}

/* Reveal */
.industries-section.show .industry-card{
    transform:translateY(0);
    opacity:1;
}

/* Hover */
.industry-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(193,18,31,0.2);
}

/* Icon */
.industry-icon{
    width:70px;
    height:70px;
    background:#C1121F;
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 20px;
    transition:0.3s ease;
}

.industry-card:hover .industry-icon{
    background:#F4B400;
    color:#C1121F;
}

.industry-card h3{
    color:#C1121F;
    font-size:16px;
}

/* Mobile */
@media(max-width:768px){
    .industries-section{
        padding:70px 0;
    }
}

/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:100px 0;
    background:#f9f9f9;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* Left Side */
.contact-info h2{
    font-size:36px;
    color:#C1121F;
    margin-bottom:20px;
}

.contact-info p{
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
}

.contact-details p{
    margin-bottom:15px;
}

/* Form */
.contact-form-wrapper{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
    transform:translateY(40px);
    opacity:0;
    transition:0.6s ease;
}

.contact-section.show .contact-form-wrapper{
    transform:translateY(0);
    opacity:1;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:14px;
    transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#C1121F;
    outline:none;
}

.contact-form button{
    width:100%;
    padding:14px;
    background:#C1121F;
    color:#fff;
    border:none;
    border-radius:5px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#F4B400;
    color:#C1121F;
}

/* Mobile */
@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-section{
        padding:70px 0;
    }

    .contact-info h2{
        font-size:26px;
    }
}
/* ===============================
   COMMITMENT SECTION
================================= */
.commitment-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.commitment-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #C1121F;
}

.commitment-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.commitment-highlight {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-6px);
}

.highlight-box h3 {
    color: #C1121F;
    margin-bottom: 10px;
}

.highlight-box p {
    color: #555;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   VISION & MISSION SECTION
================================= */
.vision-mission-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #C1121F;
}

.vision-mission-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.vm-box {
    background: #f9f9f9;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(60px);
}

.vm-box:hover {
    transform: translateY(-10px);
}

.vm-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.vm-box h3 {
    color: #C1121F;
    margin-bottom: 15px;
    font-size: 22px;
}

.vm-box p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* Animation active state */
.vm-box.show {
    opacity: 1;
    transform: translateY(0);
}
/* ===============================
   TESTIMONIALS SECTION
================================= */
.testimonials-section {
    padding: 100px 20px;
    background: #f8f8f8;
    text-align: center;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(60px);
}

.testimonial-card:hover {
    transform: translateY(-12px);
}

/* Client Image Wrapper */
.client-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #C1121F;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image Inside */
.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-content h4 {
    color: #C1121F;
    margin-bottom: 5px;
}

.testimonial-content span {
    font-size: 14px;
    color: #777;
}

/* Reveal Animation */
.testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   FAQ SECTION
================================= */
.faq-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.faq-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #C1121F;
}

.faq-icon {
    font-size: 20px;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* =========================================
   FINAL MOBILE OPTIMIZATION (0 – 768px)
========================================= */
@media (max-width: 768px) {

    /* Global spacing */
    section {
        padding: 70px 20px !important;
    }

    .container {
        width: 92%;
    }

    /* Header Fix */
    .main-header {
        padding: 12px 0;
    }

    .logo {
        font-size: 18px;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 100px 15px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    /* Buttons full width */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }

    /* About */
    .about-content h2 {
        font-size: 24px;
    }

    .about-highlight {
        font-size: 16px;
    }

    .about-content p {
        font-size: 14px;
    }

    /* Commitment */
    .commitment-content h2 {
        font-size: 24px;
    }

    .commitment-content p {
        font-size: 14px;
    }

    /* Vision Mission */
    .section-header h2 {
        font-size: 24px;
    }

    .vm-box {
        padding: 35px 20px;
    }

    .vm-box h3 {
        font-size: 18px;
    }

    .vm-box p {
        font-size: 14px;
    }

    /* Products */
    .product-image {
        height: 180px;
    }

    .product-card h3 {
        font-size: 17px;
    }

    .product-card p {
        font-size: 13px;
    }

    /* Process */
    .process-section {
        padding: 70px 20px;
    }

    .process-step {
        padding: 25px 15px;
    }

    /* Why Choose */
    .why-card {
        padding: 30px 20px;
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 13px;
    }

    /* Stats */
    .stat-box {
        padding: 30px 15px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 14px;
    }

    /* Industries */
    .industry-card {
        padding: 30px 15px;
    }

    .industry-card h3 {
        font-size: 14px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    /* FAQ */
    .faq-question {
        font-size: 14px;
        padding: 16px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 22px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    /* Footer */
    .footer-grid {
        gap: 25px;
        text-align: center;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
/* =========================================
   HARD MOBILE OVERFLOW FIX
========================================= */

html, body {
    width: 100%;
    overflow-x: clip;   /* better than hidden */
}

/* Prevent pseudo elements from expanding */
*::before,
*::after {
    max-width: 100%;
}

/* Fix process animated line completely */
.process-wrapper::before {
    left: 0 !important;
    width: 100% !important;
    max-width: 100%;
}

/* Prevent hover transforms from affecting layout */
.product-card,
.testimonial-card,
.why-card,
.process-step {
    will-change: transform;
}

/* Remove transform shift on small screens */
@media (max-width: 768px) {

    .product-card:hover,
    .testimonial-card:hover,
    .why-card:hover,
    .process-step:hover {
        transform: none !important;
    }

    .process-wrapper::before {
        display: none !important;
    }
}
.logo img {
    height: 40px;   /* adjust as needed */
    width: auto;
    display: block;
}