/* ===================================
OIL & GAS HIGHLIGHTS
=================================== */

.oilgas-highlights{

    background:#f7f9fc;

    padding:80px 0;
}

/* Card */

.highlight-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid #edf2f7;

    box-shadow:
    0 10px 30px rgba(15,39,71,.05);

    transition:.4s ease;
}

/* Top Gradient Line */

.highlight-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #1565c0,
        #2bb673
    );

    transform:scaleX(0);

    transition:.4s;
}

.highlight-card:hover::before{

    transform:scaleX(1);
}

.highlight-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(15,39,71,.12);
}

/* Icon */

.highlight-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        rgba(21,101,192,.08),
        rgba(43,182,115,.08)
    );
}

.highlight-icon i{

    font-size:30px;

    background:
    linear-gradient(
        135deg,
        
    );

   
}

/* Title */

.highlight-card h3{

    font-family:'Posterama',sans-serif;

    font-size:22px;

    line-height:1.3;

    color:#243b61;

    margin-bottom:18px;
}

/* Text */

.highlight-card p{

    font-size:15px;

    line-height:1.9;

    color:#64748b;

    margin:0;
}





/* ==========================
OIL PRODUCTS SECTION
========================== */

.oil-products-section{
    padding:90px 0;
    background:#f5f8fc;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e9edf3;
    font-size:13px;
    font-weight:600;
    color:#243b61;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:30px;
    font-family:'Posterama',sans-serif;
    color:#42536d;
    margin-bottom:15px;
    line-height:1.2;
}

.section-heading p{
    font-size:16px;
    color:#667892;
    max-width:700px;
    margin:auto;
}

/* Grid */

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.product-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    min-height:320px;

    border:1px solid #e5ebf2;

    position:relative;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

/* Left Accent */

.product-card::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #1565c0,
        #2bb673
    );

    transform:scaleY(0);

    transition:.4s;
}

.product-card:hover::before{
    transform:scaleY(1);
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.10);
}

/* Icon */

.product-card i{

    font-size:30px;

    display:block;

    margin-bottom:25px;

    background:
    linear-gradient(
        135deg,
        #1565c0,
        #2bb673
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Heading */

.product-card h3{

    font-size:20px;

    line-height:1.2;

    color:#0d2344;

    margin-bottom:18px;

    font-family:'Posterama',sans-serif;
}

/* Text */

.product-card p{

    font-size:15px;

    line-height:1.9;

    color:#5e6f87;

    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:36px;
    }
}

@media(max-width:767px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:30px;
    }

    .product-card{
        min-height:auto;
    }
}






/* ==========================
OIL & GAS CTA SECTION
========================== */

.oil-cta-section{
    padding:80px 0 100px;
    background:#f5f8fc;
}

.oil-cta-box{

    position:relative;

    max-width:1160px;

    margin:auto;

    text-align:center;

    padding:90px 80px;

    border-radius:28px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #1f64d4 0%,
        #1d7fb8 50%,
        #2bb673 100%
    );

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

/* Decorative Glow */

.oil-cta-box::before{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-150px;
    right:-100px;

    filter:blur(30px);
}

.oil-cta-box::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    bottom:-120px;
    left:-100px;

    filter:blur(30px);
}

.oil-cta-box h2{

    position:relative;
    z-index:2;

    color:#fff;

    font-size:35px;

    font-weight:700;

    margin-bottom:25px;

    line-height:1.2;

    letter-spacing:.5px;
}

.oil-cta-box p{

    position:relative;
    z-index:2;

    color:rgba(255,255,255,.92);

    font-size:15px;

    line-height:1.9;

    max-width:850px;

    margin:0 auto 40px;
}

.oil-cta-btn{

    position:relative;
    z-index:2;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:260px;

    height:60px;

    padding:0 40px;

    border-radius:50px;

    background:#fff;

    color:#0b57d0;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.35s ease;
}

.oil-cta-btn:hover{

    transform:translateY(-4px);

    color:#0b57d0;

    box-shadow:
    0 15px 35px rgba(255,255,255,.25);
}

/* Responsive */

@media(max-width:991px){

    .oil-cta-box{
        padding:70px 40px;
    }

    .oil-cta-box h2{
        font-size:40px;
    }
}

@media(max-width:767px){

    .oil-cta-box{
        padding:60px 25px;
        border-radius:22px;
    }

    .oil-cta-box h2{
        font-size:28px;
    }

    .oil-cta-box p{
        font-size:15px;
    }

    .oil-cta-btn{
        width:100%;
        max-width:280px;
        font-size:16px;
    }
}


/* ==========================
INDUSTRIES WE SERVE
========================== */

.industries-section{
    padding:90px 0;
    background:#f5f8fc;
}

.industry-heading{
    text-align:center;
    margin-bottom:50px;
}

.industry-badge{

    display:inline-block;

    padding:10px 22px;

    background:#e9edf3;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    color:#233d63;

    margin-bottom:18px;
}

.industry-heading h2{

    font-size:30px;

    font-family:'Posterama',sans-serif;

    color:#42536d;

    margin:0;

    letter-spacing:.5px;
}

/* Cards */

.industry-item{

    background:#fff;

    border-radius:18px;

    padding:28px;

    display:flex;

    align-items:center;

    gap:22px;

    position:relative;

    overflow:hidden;

    border:1px solid #e6edf4;

    transition:.35s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.04);
}

/* Gradient Border */

.industry-item::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #1565c0,
        #2bb673
    );

    transform:scaleY(0);

    transition:.4s;
}

.industry-item:hover::before{
    transform:scaleY(1);
}

.industry-item:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.08);
}

/* Icon */

.industry-icon{

    min-width:70px;
    width:70px;
    height:70px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #1565c0,
        #2bb673
    );

    color:#fff;

    font-size:28px;

    box-shadow:
    0 10px 25px rgba(21,101,192,.25);
}

.industry-content h4{

    font-size:20px;

    font-weight:700;

    color:#1e3556;

    margin-bottom:8px;
}

.industry-content p{

    font-size:15px;

    color:#6b7c95;

    line-height:1.7;

    margin:0;
}

/* Mobile */

@media(max-width:768px){

    .industry-item{

        flex-direction:column;

        text-align:center;
    }

    .industry-heading h2{
        font-size:24px;
    }

    .industry-content h4{
        font-size:18px;
    }
}
/* ==========================
CONSTRUCTION HIGHLIGHTS
========================== */

.construction-highlights-section{
    padding:80px 0;
    background:#f5f8fc;
}

.highlight-card{

    background:#fff;

    text-align:center;

    padding:40px 25px;

    border-radius:22px;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid #e8eef5;

    transition:.4s ease;

    box-shadow:
    0 8px 30px rgba(0,0,0,.04);
}

.highlight-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #1565c0,
        #2bb673
    );

    transform:scaleX(0);

    transition:.4s;
}

.highlight-card:hover::before{
    transform:scaleX(1);
}

.highlight-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.10);
}

.highlight-icon{

    width:75px;
    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #1565c0,
        #2bb673
    );

    color:#fff;

    font-size:30px;
}

.highlight-card h3{

    font-size:18px;

    font-weight:700;

    color:#1f3557;

    margin-bottom:15px;

    line-height:1.4;
}

.highlight-card p{

    font-size:15px;

    color:#667892;

    line-height:1.8;

    margin:0;
}




/* =========================
CONSTRUCTION PRODUCTS
========================= */

.construction-products-section{
    padding:15px 0;
    background:#f5f8fc;
}

/* Heading */

.section-title{
    margin-bottom:50px;
}

.section-badge{

    display:inline-block;

    background:#e9edf3;

    color:#1f3557;

    padding:10px 22px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

    margin-bottom:18px;
}

.section-title h2{

    font-size:25px;

    color:#42536d;

    margin-bottom:15px;

    font-family:'Posterama',sans-serif;
}

.section-title p{

    color:#6b7c95;

    font-size:14px;

    max-width:700px;

    margin:auto;
}

/* Cards */

.construction-card{

    background:#fff;

    padding:40px 35px;

    border-radius:24px;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid #e8eef5;

    transition:.4s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.construction-card::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:
    linear-gradient(
    180deg,
    #1565c0,
    #2bb673
    );

    transform:scaleY(0);

    transition:.4s;
}

.construction-card:hover::before{
    transform:scaleY(1);
}

.construction-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.10);
}

/* Icon */

.card-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    background:
    linear-gradient(
    135deg,
    #1565c0,
    #2bb673
    );

    color:#fff;

    font-size:28px;
}

.construction-card h3{

    font-size:20px;

    line-height:1.3;

    color:#0d2344;

    margin-bottom:18px;

    font-family:'Posterama',sans-serif;
}

.construction-card p{

    font-size:15px;

    line-height:1.9;

    color:#667892;

    margin:0;
}

/* Mobile */

@media(max-width:768px){

    .section-title h2{
        font-size:24px;
    }

    .construction-card{
        padding:30px;
    }

    .construction-card h3{
        font-size:20px;
    }
}




/* ==========================
CONSTRUCTION SECTORS
========================== */

.construction-sectors-section{
    padding:20px 0;
    background:#f5f8fc;
}

.section-title{
    margin-bottom:60px;
}

.section-badge{

    display:inline-block;

    padding:10px 22px;

    background:#e9edf3;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    color:#243b61;

    margin-bottom:18px;
}

.section-title h2{

    font-size:30px;

    color:#42536d;

    margin-bottom:15px;

    font-family:'Posterama',sans-serif;
}

.section-title p{

    font-size:15px;

    color:#667892;

    max-width:700px;

    margin:auto;
}

/* Card */

.sector-card{

    background:#fff;

    border-radius:22px;

    padding:30px;

    display:flex;

    align-items:center;

    gap:22px;

    border:1px solid #e8eef5;

    position:relative;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.04);
}

.sector-card::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:
    linear-gradient(
    180deg,
    #1565c0,
    #2bb673
    );

    transform:scaleY(0);

    transition:.4s;
}

.sector-card:hover::before{
    transform:scaleY(1);
}

.sector-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 45px rgba(0,0,0,.08);
}

/* Icon */

.sector-icon{

    min-width:75px;

    width:75px;
    height:75px;

    border-radius:18px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #1565c0,
    #2bb673
    );

    color:#fff;

    font-size:30px;
}

.sector-content h4{

    font-size:20px;

    font-weight:700;

    color:#1e3556;

    margin-bottom:8px;
}

.sector-content p{

    font-size:15px;

    color:#6b7c95;

    line-height:1.8;

    margin:0;
}

/* Mobile */

@media(max-width:768px){

    .sector-card{

        flex-direction:column;

        text-align:center;
    }

    .section-title h2{
        font-size:24px;
    }
}



/* ==========================
STEEL DIVISION HIGHLIGHTS
========================== */

.steel-highlights-section{
    padding:30px 0;
    background:#f5f8fc;
}

.highlight-card{

    background:#fff;

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid #e7edf5;

    transition:.4s ease;

    box-shadow:
    0 8px 30px rgba(0,0,0,.04);
}

.highlight-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #1565c0,
        #2bb673
    );

    transform:scaleX(0);

    transition:.4s;
}

.highlight-card:hover::before{
    transform:scaleX(1);
}

.highlight-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.08);
}

.highlight-icon{

    width:72px;
    height:72px;

    margin:0 auto 25px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #1565c0,
        #2bb673
    );

    color:#fff;

    font-size:30px;
}

.highlight-card h3{

    font-size:20px;

    font-weight:700;

    line-height:1.35;

    color:#1f3556;

    margin-bottom:18px;

    text-transform:uppercase;
}

.highlight-card p{

    font-size:15px;

    line-height:1.8;

    color:#6b7c95;

    margin:0;
}

/* Mobile */

@media(max-width:991px){

    .highlight-card{
        padding:35px 25px;
    }

    .highlight-card h3{
        font-size:18px;
    }
}

/* ==========================
STEEL PRODUCTS SECTION
========================== */

.steel-products-section{
    padding:20px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e9eef6;
    color:#1f3556;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-header h2{
    font-size:25px;
    font-weight:700;
    color:#1f3556;
    margin-bottom:18px;
    letter-spacing:.5px;
}

.section-header p{
    max-width:850px;
    margin:auto;
    color:#667892;
    font-size:17px;
    line-height:1.8;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    position:relative;

    overflow:hidden;

    border:1px solid #e4ebf4;

    transition:.4s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.product-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #1565c0,
        #2bb673
    );

    transform:scaleX(0);

    transition:.4s;
}

.product-card:hover::before{
    transform:scaleX(1);
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.10);
}

.product-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    background:
    linear-gradient(
        135deg,
        #e2e5e8,
        #c5d3cc
    );

    color:#fff;

    font-size:25px;
}

.product-card h3{

    font-size:18px;

    font-weight:700;

    color:#1f3556;

    line-height:1.3;

    margin-bottom:18px;

    text-transform:uppercase;
}

.product-card p{

    color:#667892;

    font-size:16px;

    line-height:1.9;

    margin:0;
}

@media(max-width:991px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .steel-products-section{
        padding:80px 0;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }

    .product-card{
        padding:30px;
    }
}




/* ===========================
INDUSTRIES WE SERVE
=========================== */

.industries-serve-section{
    padding:30px 0;
    background:#f5f8fc;
}

.industries-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e8edf5;
    color:#1f3556;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.industries-header h2{
    font-size:30px;
    font-weight:700;
    color:#1f3556;
    margin-bottom:18px;
    letter-spacing:.5px;
}

.industries-header p{
    font-size:16px;
    line-height:1.8;
    color:#667892;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.industry-box{

    background:#fff;

    border-radius:18px;

    padding:26px 30px;

    display:flex;
    align-items:center;
    gap:16px;

    border:1px solid #e5ebf3;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 8px 25px rgba(0,0,0,.04);
}

.industry-box::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:4px;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #1565c0,
        #2bb673
    );

    transform:scaleY(0);

    transition:.4s;
}

.industry-box:hover::before{
    transform:scaleY(1);
}

.industry-box:hover{

    transform:translateY(-6px);

    border-color:#d7e4f3;

    box-shadow:
    0 20px 35px rgba(0,0,0,.08);
}

.industry-box i{

    width:52px;
    height:52px;

    min-width:52px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    color:#fff;

    
}

.industry-box span{

    font-size:18px;
    font-weight:600;
    color:#1f3556;
}

@media(max-width:768px){

    .industries-grid{
        grid-template-columns:1fr;
    }

    .industries-header h2{
        font-size:26px;
    }

    .industry-box{
        padding:22px;
    }
}



/* =========================
ELECTRICAL FEATURES
========================= */

.electrical-features-section{
    padding:40px 0;
    background:#f5f8fc;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{

    background:#fff;

    border-radius:24px;

    padding:40px 25px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:1px solid #e5ebf3;

    transition:.4s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.04);
}

.feature-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #1565c0,
        #2bb673
    );

    transform:scaleX(0);

    transition:.4s;
}

.feature-card:hover::before{
    transform:scaleX(1);
}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.10);
}

.feature-icon{

    width:70px;
    height:70px;

    margin:0 auto 25px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:28px;

    
}

.feature-card h3{

    font-size:22px;

    line-height:1.3;

    font-weight:700;

    color:#1f3556;

    margin-bottom:18px;

    text-transform:uppercase;
}

.feature-card p{

    color:#667892;

    font-size:16px;

    line-height:1.8;

    margin:0;
}

/* Responsive */

@media(max-width:1200px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:35px 25px;
    }

    .feature-card h3{
        font-size:20px;
    }
}




/* ==========================
ELECTRICAL PRODUCTS
========================== */

.electrical-products-section{
    padding:50px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e9eef6;
    color:#1f3556;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-header h2{
    font-size:20px;
    font-weight:700;
    color:#1f3556;
    margin-bottom:18px;
}

.section-header p{
    font-size:16px;
    color:#667892;
    line-height:1.8;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    padding:22px;
    min-height:220px;
}

.product-card h3{
    font-size:16px;
}

.product-card p{
    font-size:13px;
}
.product-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #1565c0,
        #2bb673
    );

    transform:scaleX(0);

    transition:.4s;
}

.product-card:hover::before{
    transform:scaleX(1);
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.10);
}



.product-card h3{

    font-size:20px;

    line-height:1.3;

    color:#1f3556;

    margin-bottom:18px;

    font-weight:700;
}

.product-card p{

    color:#667892;

    font-size:15px;

    line-height:1.9;

    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }

    .product-card{
        padding:30px;
    }
}


/* ===========================
COMPLIANCE & STANDARDS
=========================== */

.compliance-section{
    padding:30px 0;
    background:#f5f8fc;
}

.compliance-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e8edf5;
    color:#1f3556;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.compliance-header h2{
    font-size:30px;
    font-weight:700;
    color:#1f3556;
    margin-bottom:15px;
}

.compliance-header p{
    font-size:17px;
    color:#667892;
    line-height:1.8;
}

.compliance-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.compliance-card{

    background:#ffffff;

    padding:30px 35px;

    border-radius:18px;

    border:1px solid #e5ebf3;

    font-size:18px;

    font-weight:500;

    color:#1f3556;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 8px 25px rgba(0,0,0,.04);
}

.compliance-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:4px;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #1565c0,
        #2bb673
    );

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;
}

.compliance-card:hover::before{
    transform:scaleY(1);
}

.compliance-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 35px rgba(0,0,0,.08);

    border-color:#dce6f2;
}

/* Responsive */

@media(max-width:768px){

    .compliance-grid{
        grid-template-columns:1fr;
    }

    .compliance-header h2{
        font-size:26px;
    }

    .compliance-card{
        padding:25px;
        font-size:16px;
    }
}



/* ==========================
ELECTRICAL CTA SECTION
========================== */

.electrical-cta-section{
    padding:30px 0 100px;
    background:#f5f8fc;
}

.electrical-cta-box{

    max-width:1250px;

    margin:auto;

    text-align:center;

    padding:90px 80px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        #1565c0 0%,
        #1e88c8 35%,
        #22a6a3 70%,
        #2bb673 100%
    );

    position:relative;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(21,101,192,.20);
}

/* Decorative Glow */

.electrical-cta-box::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    top:-220px;
    left:-150px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);
}

.electrical-cta-box::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    bottom:-180px;
    right:-120px;

    border-radius:50%;

    background:
    rgba(255,255,255,.06);
}

.electrical-cta-box h2{

    color:#fff;

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;

    line-height:1.2;

    position:relative;
    z-index:2;
}

.electrical-cta-box p{

    color:rgba(255,255,255,.95);

    font-size:15px;

    line-height:1.8;

    max-width:900px;

    margin:0 auto 40px;

    position:relative;
    z-index:2;
}

.electrical-cta-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:340px;

    height:70px;

    padding:0 40px;

    background:#fff;

    color:#1565c0;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

    border-radius:100px;

    transition:.35s ease;

    position:relative;
    z-index:2;
}

.electrical-cta-btn:hover{

    transform:translateY(-4px);

    background:#f8fbff;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);
}

/* Responsive */

@media(max-width:991px){

    .electrical-cta-box{
        padding:70px 40px;
    }

    .electrical-cta-box h2{
        font-size:40px;
    }

    .electrical-cta-box p{
        font-size:18px;
    }
}

@media(max-width:768px){

    .electrical-cta-box{
        padding:50px 25px;
    }

    .electrical-cta-box h2{
        font-size:30px;
    }

    .electrical-cta-box p{
        font-size:16px;
    }

    .electrical-cta-btn{
        min-width:100%;
        font-size:17px;
    }
}




/* ==========================
FMCG FEATURES SECTION
========================== */

.fmcg-features-section{
    padding:30px 0;
    background:#f5f8fc;
}

.fmcg-features-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.fmcg-feature-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.35s ease;

    border:1px solid rgba(22,90,170,.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.fmcg-feature-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #1565c0,
        #29b473
    );

    transform:scaleX(0);

    transition:.4s;
}

.fmcg-feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.12);
}

.fmcg-feature-card:hover::before{
    transform:scaleX(1);
}

.feature-number{

    font-size:30px;

    font-weight:800;

    line-height:1;

    margin-bottom:22px;

    background:
    linear-gradient(
        135deg,
        #1565c0,
        #29b473
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.fmcg-feature-card h3{

    font-size:22px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:18px;

    line-height:1.2;
}

.fmcg-feature-card p{

    font-size:15px;

    line-height:1.8;

    color:#64748b;

    margin:0;
}

/* Responsive */

@media(max-width:1200px){

    .fmcg-features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .fmcg-features-grid{
        grid-template-columns:1fr;
    }

    .fmcg-feature-card{
        padding:35px 25px;
    }

    .fmcg-feature-card h3{
        font-size:24px;
    }
}




/* ==========================
FMCG PRODUCTS SECTION
========================== */

.fmcg-products-section{
    padding:50px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-badge{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:#e9edf3;
    color:#183153;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-header h2{
    font-size:30px;
    font-weight:700;
    color:#4b5d77;
    margin-bottom:15px;
}

.section-header p{
    max-width:750px;
    margin:auto;
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    border:1px solid rgba(15,23,42,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.product-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #1565c0,
        #2ab673
    );

    transform:scaleX(0);

    transition:.4s;
}

.product-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.product-card:hover::before{
    transform:scaleX(1);
}

/* ICONS WITHOUT BACKGROUND */

.product-card i{

    font-size:34px;

    margin-bottom:22px;

    color:#1565c0;

    display:block;
}

.product-card h3{

    font-size:24px;

    font-weight:700;

    line-height:1.3;

    color:#0f172a;

    margin-bottom:18px;
}

.product-card p{

    font-size:16px;

    line-height:1.9;

    color:#64748b;

    margin:0;
}

@media(max-width:992px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }
}


/* ===================================
FMCG COMPLIANCE SECTION
=================================== */

.fmcg-compliance-section{
    padding:30px 0;
    background:#f5f8fc;
}

.compliance-header{
    text-align:center;
    margin-bottom:55px;
}

.section-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 22px;

    background:#e8edf5;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    color:#183153;

    margin-bottom:18px;
}

.compliance-header h2{

    font-size:30px;
    font-weight:700;

    color:#4b5d77;

    margin-bottom:15px;

    letter-spacing:.5px;
}

.compliance-header p{

    max-width:760px;

    margin:auto;

    font-size:18px;

    line-height:1.8;

    color:#64748b;
}

.compliance-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;
}

.compliance-card{

    background:#ffffff;

    padding:28px 30px;

    border-radius:18px;

    font-size:18px;

    font-weight:500;

    color:#0f172a;

    border:1px solid rgba(15,23,42,.08);

    box-shadow:
    0 8px 20px rgba(15,23,42,.04);

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.compliance-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:4px;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #1565c0,
        #29b473
    );

    opacity:0;

    transition:.35s;
}

.compliance-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 35px rgba(15,23,42,.08);
}

.compliance-card:hover::before{
    opacity:1;
}

/* Responsive */

@media(max-width:768px){

    .compliance-grid{
        grid-template-columns:1fr;
    }

    .compliance-header h2{
        font-size:26px;
    }

    .compliance-card{
        font-size:16px;
    }
}




/* ==========================
MARKETS SECTION
========================== */

.markets-section{
    padding:30px 0;
    background:#f5f8fc;
}

.markets-header{
    text-align:center;
    margin-bottom:55px;
}

.section-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 24px;

    background:#e9edf3;

    border-radius:50px;

    color:#183153;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.markets-header h2{

    font-size:30px;

    font-weight:700;

    color:#4b5d77;

    margin-bottom:15px;
}

.markets-header p{

    max-width:760px;

    margin:auto;

    font-size:17px;

    line-height:1.8;

    color:#64748b;
}

.markets-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;
}

.market-card{

    background:#ffffff;

    padding:30px 32px;

    border-radius:18px;

    font-size:18px;

    font-weight:600;

    color:#0f172a;

    border:1px solid rgba(15,23,42,.08);

    box-shadow:
    0 8px 20px rgba(15,23,42,.04);

    position:relative;

    overflow:hidden;

    transition:.35s ease;
}

.market-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:0;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #1565c0,
        #29b473
    );

    transition:.35s ease;
}

.market-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 35px rgba(15,23,42,.08);
}

.market-card:hover::before{
    width:4px;
}

@media(max-width:768px){

    .markets-grid{
        grid-template-columns:1fr;
    }

    .markets-header h2{
        font-size:26px;
    }

    .market-card{
        font-size:16px;
    }
}




/* ==================================
HEALTHCARE PRODUCTS SECTION
================================== */

.healthcare-products-section{
    padding:30px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 24px;

    background:#e9edf3;

    border-radius:50px;

    color:#183153;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.section-header h2{

    font-size:30px;
    font-weight:700;

    color:#4b5d77;

    margin-bottom:15px;
}

.section-header p{

    max-width:850px;

    margin:auto;

    font-size:17px;

    line-height:1.8;

    color:#64748b;
}

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.product-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    border:1px solid rgba(15,23,42,.08);

    box-shadow:
    0 8px 25px rgba(15,23,42,.04);

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.product-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #1565c0,
        #29b473
    );

    transform:scaleX(0);

    transition:.4s;
}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.product-card:hover::before{
    transform:scaleX(1);
}

/* ICONS WITHOUT BACKGROUND */

.product-card i{

    font-size:34px;

    color:#1565c0;

    margin-bottom:22px;

    display:block;
}

.product-card h3{

    font-size:24px;

    font-weight:700;

    line-height:1.3;

    color:#0f172a;

    margin-bottom:18px;
}

.product-card p{

    font-size:16px;

    line-height:1.9;

    color:#64748b;

    margin:0;
}

@media(max-width:992px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }

    .product-card{
        padding:30px;
    }
}




/* ===========================
HEALTHCARE COMPLIANCE SECTION
=========================== */

.medical-compliance-section{
    padding:30px 0;
    background:#f5f8fc;
}

.compliance-header{
    text-align:center;
    margin-bottom:55px;
}

.section-badge{

    display:inline-block;

    padding:10px 24px;

    background:#e9edf3;

    border-radius:50px;

    color:#183153;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.compliance-header h2{

    font-size:30px;

    font-weight:700;

    color:#4b5d77;

    margin-bottom:15px;
}

.compliance-header p{

    max-width:850px;

    margin:auto;

    font-size:18px;

    line-height:1.8;

    color:#64748b;
}

.compliance-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;
}

.compliance-card{

    background:#fff;

    border-radius:18px;

    padding:28px 30px;

    display:flex;

    align-items:center;

    gap:16px;

    border:1px solid rgba(15,23,42,.08);

    box-shadow:
    0 8px 20px rgba(15,23,42,.04);

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.compliance-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:0;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #1565c0,
        #29b473
    );

    transition:.35s;
}

.compliance-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 35px rgba(15,23,42,.08);
}

.compliance-card:hover::before{
    width:4px;
}

.compliance-card i{

    font-size:24px;

    color:#1565c0;

    min-width:24px;
}

.compliance-card span{

    font-size:18px;

    font-weight:500;

    color:#0f172a;

    line-height:1.6;
}

/* Responsive */

@media(max-width:768px){

    .compliance-grid{
        grid-template-columns:1fr;
    }

    .compliance-header h2{
        font-size:26px;
    }

    .compliance-card{
        padding:24px;
    }

    .compliance-card span{
        font-size:16px;
    }
}


/* ==================================
HEALTHCARE FACILITIES SECTION
================================== */

.healthcare-facilities-section{
    padding:30px 0;
    background:#f5f8fc;
}

.facilities-header{
    text-align:center;
    margin-bottom:55px;
}

.section-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 24px;

    background:#e9edf3;

    border-radius:50px;

    color:#183153;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.facilities-header h2{

    font-size:30px;

    font-weight:700;

    color:#4b5d77;

    margin-bottom:15px;
}

.facilities-header p{

    max-width:760px;

    margin:auto;

    font-size:17px;

    line-height:1.8;

    color:#64748b;
}

.facilities-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;
}

.facility-card{

    background:#ffffff;

    padding:30px 32px;

    border-radius:18px;

    font-size:18px;

    font-weight:600;

    color:#0f172a;

    border:1px solid rgba(15,23,42,.08);

    box-shadow:
    0 8px 20px rgba(15,23,42,.04);

    position:relative;

    overflow:hidden;

    transition:.35s ease;
}

.facility-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:0;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #1565c0,
        #29b473
    );

    transition:.35s ease;
}

.facility-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 35px rgba(15,23,42,.08);
}

.facility-card:hover::before{
    width:4px;
}

/* Mobile */

@media(max-width:768px){

    .facilities-grid{
        grid-template-columns:1fr;
    }

    .facilities-header h2{
        font-size:26px;
    }

    .facility-card{
        font-size:16px;
        padding:24px;
    }
}



/* ==========================
TECHNOLOGY PRODUCTS SECTION
========================== */

.technology-products-section{
    padding:30px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    background:#e9edf3;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    color:#183153;
    margin-bottom:18px;
}

.section-header h2{
    font-size:20px;
    font-weight:700;
    color:#4b5d77;
    margin-bottom:18px;
}

.section-header p{
    font-size:16px;
    line-height:1.8;
    color:#64748b;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    padding:32px;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 8px 25px rgba(15,23,42,.04);
    transition:.35s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(15,23,42,.10);
}

.product-card i{
    font-size:34px;
    color:#04162a;
    margin-bottom:20px;

    /* NO BACKGROUND */
    background:none;
    padding:0;
    border-radius:0;
}

.product-card h3{
    font-size:22px;
    line-height:1.3;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.product-card p{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }

    .product-card{
        padding:28px;
    }

    .product-card h3{
        font-size:22px;
    }
}




/* ==========================
TECH COMPLIANCE SECTION
========================== */

.tech-compliance-section{
    padding:30px 0;
    background:#f5f8fc;
}

.section-heading{
    text-align:center;
    max-width:900px;
    margin:0 auto 55px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e9edf3;
    color:#183153;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:30px;
    font-weight:700;
    color:#4b5d77;
    margin-bottom:15px;
    line-height:1.2;
}

.section-heading p{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

.compliance-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.compliance-card{
    background:#ffffff;
    border-radius:18px;
    padding:32px;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 8px 24px rgba(15,23,42,.04);
    transition:.35s ease;
}

.compliance-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(15,23,42,.08);
}

.compliance-card h3{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
    line-height:1.4;
}

.compliance-card p{
    margin:0;
    color:#64748b;
    font-size:15px;
    line-height:1.8;
}

/* Responsive */

@media(max-width:768px){

    .compliance-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:26px;
    }

    .compliance-card{
        padding:26px;
    }
}



/* ==========================
INDUSTRIES WE SERVE
========================== */

.industries-section{
    padding:30px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 50px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e9edf3;
    color:#183153;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-header h2{
    font-size:30px;
    font-weight:700;
    color:#4b5d77;
    margin-bottom:15px;
}

.section-header p{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.industry-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    padding:24px 28px;
    display:flex;
    align-items:center;
    gap:16px;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(15,23,42,.04);
}

.industry-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(15,23,42,.08);
}

.industry-card i{
    font-size:22px;
    color:#1565c0;

    /* No background */
    background:none;
    padding:0;
}

.industry-card span{
    font-size:18px;
    font-weight:600;
    color:#0f172a;
}

/* Mobile */

@media(max-width:768px){

    .industries-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }

    .industry-card{
        padding:20px;
    }

    .industry-card span{
        font-size:16px;
    }
}


/* ==========================
IMPORT & EXPORT SERVICES
========================== */

.import-export-services{
    padding:30px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 65px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    background:#e9edf3;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    color:#183153;
    margin-bottom:18px;
}

.section-header h2{
    font-size:30px;
    font-weight:700;
    color:#4b5d77;
    margin-bottom:18px;
}

.section-header p{
    font-size:17px;
    line-height:1.8;
    color:#64748b;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:32px;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 8px 25px rgba(15,23,42,.05);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(15,23,42,.10);
}

.service-card i{
    font-size:34px;
    color:#1565c0;
    margin-bottom:20px;

    /* No background */
    background:none;
    padding:0;
}

.service-card h3{
    font-size:24px;
    line-height:1.3;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
}

.service-card p{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }

    .service-card{
        padding:28px;
    }

    .service-card h3{
        font-size:22px;
    }
}

/* ==========================
TRADE COMPLIANCE SECTION
========================== */

.trade-compliance-section{
    padding:30px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 55px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e9edf3;
    color:#183153;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-header h2{
    font-size:30px;
    font-weight:700;
    color:#4b5d77;
    margin-bottom:15px;
}

.section-header p{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

.compliance-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.compliance-card{
    background:#ffffff;
    border-radius:18px;
    padding:28px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 8px 24px rgba(15,23,42,.04);
    transition:.35s ease;
}

.compliance-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(15,23,42,.08);
}

.compliance-card i{
    font-size:24px;
    color:#1565c0;
    margin-top:3px;

    /* No Background */
    background:none;
    padding:0;
}

.compliance-card h3{
    font-size:20px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:8px;
    line-height:1.4;
}

.compliance-card p{
    margin:0;
    color:#64748b;
    font-size:15px;
    line-height:1.7;
}

/* Responsive */

@media(max-width:768px){

    .compliance-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }

    .compliance-card{
        padding:24px;
    }

    .compliance-card h3{
        font-size:18px;
    }
}




/* ==========================
MARKETS & REGIONS SECTION
========================== */

.markets-regions-section{
    padding:30px 0;
    background:#f5f8fc;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 55px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#e9edf3;
    color:#183153;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-header h2{
    font-size:30px;
    font-weight:700;
    color:#4b5d77;
    margin-bottom:15px;
}

.section-header p{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

.markets-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.market-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    padding:28px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.35s ease;
    box-shadow:0 8px 24px rgba(15,23,42,.04);
}

.market-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(15,23,42,.08);
}

.market-card i{
    font-size:24px;
    color:#1565c0;

    /* No Background */
    background:none;
    padding:0;
}

.market-card span{
    font-size:20px;
    font-weight:600;
    color:#0f172a;
    line-height:1.5;
}

/* Responsive */

@media(max-width:768px){

    .markets-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:26px;
    }

    .market-card{
        padding:22px;
    }

    .market-card span{
        font-size:17px;
    }
}