/* Root Variables */
:root {
    --primary: #F06724;
    --dark: #333;
    --gray: #000;
    --white: #fff;
    --light-gray: #f8f9fa;
}

/* Typography */
h1, h2 {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 40px;
    color: var(--dark);
}

    h1 span {
        color: var(--primary);
    }

h2 {
    font-size: 1.8rem;
    margin-top: 50px;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}

p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Card Sections */
.card {
    background: var(--white);
    border-radius: 14px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
    margin-bottom: 40px;
    margin-top: 26px;
}

    .card:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

/* Who We Are Section */
.who-we-are h1 {
    text-align: center;
    margin-bottom: 30px;
}

.who-we-are p {
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Industries Section */
.industries {
    background: linear-gradient(135deg, #F06724 0%, #d85a1f 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 14px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(240, 103, 36, 0.2);
}

    .industries h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .industries p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.05rem;
        line-height: 1.8;
    }

/* Grid Layout for Values & Services */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.item {
    padding: 24px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
        border-color: var(--primary);
    }

    .item h3 {
        color: var(--primary);
        margin-bottom: 12px;
    }

    .item p {
        font-size: 0.95rem;
        color: var(--gray);
    }

/* Highlight Text */
.highlight {
    font-size: 1.1rem;
    line-height: 1.8;
}

    .highlight .accent-color {
        color: var(--primary);
        font-weight: 700;
    }

/* Accent Color Utility */
.accent-color {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 16px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .card {
        padding: 24px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industries {
        padding: 20px 24px;
    }
    .card {
        background: var(--white);
        border-radius: 14px;
        padding: 40px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
        margin-bottom: 40px;
        margin-top: 76px;
    }
  
}

@media (max-width: 480px) {
    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 1.3rem;
    }

    .card {
        padding: 20px;
        margin-bottom: 24px;
        margin-top: -26px;
    }
    .nice1 {
        height: 64vh !important;
    }
    .card {
        background: var(--white);
        border-radius: 14px;
        padding: 40px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
        margin-bottom: 40px;
        margin-top: -26px;
    }

}
@media (min-width: 1024px){
    .card {
        background: var(--white);
        border-radius: 14px;
        padding: 40px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
        margin-bottom: 40px;
        margin-top: 33px !important;
    }
}