:root {
    --primary-color: #2c3e50;
    --secondary-color: #50C878;
    --accent-color: #3498db;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    overflow-x: hidden;
}
/* logo style */
.card {
  width: 130px;
  height: 130px;
  background: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  /* margin: 50px auto; */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 120%;
  background-image: linear-gradient(180deg, rgb(108, 226, 106), rgb(112, 120, 230));
  animation: rotBGimg 3s linear infinite;
  z-index: 1;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.card::after {
  content: '';
  position: absolute;
  background: white;
  inset: 5px;
  border-radius: 15px;
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  padding: 10px;
}

.card-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Top Bar Styles */
.top-bar-section {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-bar-inner-section {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
}

.top-bar-inner-section a {
    color: white;
    text-decoration: none;
    margin: 0.3rem 0.5rem;
    display: inline-flex;
    align-items: center;
}

.top-bar-inner-section i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* Header Styles */
.header-section {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-section-main {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 1rem;*/
    position: relative;
}

.logo-container {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
}

/* Navigation Styles */
.navlink-container {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navlink-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navlink-list > li {
    position: relative;
}

.navlink-list a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 0.8rem 1rem;
    display: block;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 4px;
}

.navlink-list a:hover
/* ,.navlink-list a.active  */
{
    color: var(--secondary-color);
    background-color: rgba(80, 200, 120, 0.1);
}

/* Dropdown Styles */
.dropdown-list ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    border-radius: 4px;
    padding: 0.5rem 0;
}

.dropdown-list:hover > ul {
    opacity: 1;
    visibility: visible;
}

.dropdown-list ul li {
    position: relative;
}

.dropdown-list ul a {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    color: #555;
}

.dropdown-list ul a:hover {
    background-color: rgba(80, 200, 120, 0.1);
    color: var(--secondary-color);
}

/* Nested dropdown */
.dropdown-list ul ul {
    left: 100%;
    top: 0;
}

.dropdown-indicator {
    margin-left: 0.3rem;
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown-list:hover > a > .dropdown-indicator {
    transform: rotate(180deg);
}

/* Mobile Navigation Styles */
@media (max-width: 900px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .navlink-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 5rem 1rem 2rem;
        overflow-y: auto;
    }
    
    .navlink-container.active {
        right: 0;
    }
    
    .navlink-list {
        flex-direction: column;
        width: 100%;
    }
    
    .navlink-list > li {
        width: 100%;
    }
    
    .navlink-list a {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-list ul {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .dropdown-list.active > ul {
        display: block;
    }
    
    .dropdown-list ul ul {
        left: 0;
    }
    
    .dropdown-indicator {
        float: right;
        transform: rotate(0deg);
        transition: transform 0.3s;
    }
    
    .dropdown-list.active > a > .dropdown-indicator {
        transform: rotate(180deg);
    }
}

/* Main Content Styles */
.lab-section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.lab-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lab-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.lab-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.lab-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.lab-analysis,
.lab-beneficiation {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: var(--transition);
    animation: fadeInUp 1s ease;
}

.lab-analysis:hover,
.lab-beneficiation:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.lab-analysis h2,
.lab-beneficiation h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    font-size: 1.8rem;
}

.lab-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.lab-box {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeIn 1s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lab-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba (0, 0, 0, 0.15);
}

.lab-img-container {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.lab-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: 1rem;
}

.lab-box:hover img {
    transform: scale(1.05);
}

.lab-box h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-align: center;
}

.lab-box p {
    padding: 0 1rem 1.5rem;
    color: #666;
    text-align: center;
    margin-top: auto;
}

/* Animation delays for staggered appearance */
.lab-box:nth-child(1) {
    animation-delay: 0.1s;
}

.lab-box:nth-child(2) {
    animation-delay: 0.2s;
}

.lab-box:nth-child(3) {
    animation-delay: 0.3s;
}

.lab-box:nth-child(4) {
    animation-delay: 0.4s;
}

.lab-box:nth-child(5) {
    animation-delay: 0.5s;
}

.lab-box:nth-child(6) {
    animation-delay: 0.6s;
}

.lab-box:nth-child(7) {
    animation-delay: 0.7s;
}

.lab-box:nth-child(8) {
    animation-delay: 0.8s;
}

.lab-box:nth-child(9) {
    animation-delay: 0.9s;
}

/* Keyframe animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-section-main {
        padding: 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navlink-list a {
        padding: 0.8rem 0.7rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .lab-content {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .lab-section {
        padding: 3rem 1.5rem;
    }

    .lab-header h2 {
        font-size: 2rem;
    }

    .lab-analysis h2,
    .lab-beneficiation h2 {
        font-size: 1.5rem;
    }

    .lab-content {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .top-bar-inner-section {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-inner-section a {
        margin: 0.3rem 0;
    }
}

@media (max-width: 576px) {
    .lab-section {
        padding: 2rem 1rem;
    }

    .lab-header h2 {
        font-size: 1.8rem;
    }

    .lab-content {
        grid-template-columns: 1fr;
    }

    .lab-img-container {
        height: 180px;
    }
    
    .header-section-main {
        padding: 0.8rem;
    }
    
    .logo-img {
        height: 45px;
    }
}



/* about us start */

 /* About Section Styling */
 .about-section-container {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.about-section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/newimg/pattern.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.about-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

/* .about-section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #1ebe5d;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
} */

.womika-highlight {
    font-family: 'Algerian', sans-serif;
    color: #1ebe5d;
    position: relative;
}

.womika-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1ebe5d;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.about-section-header:hover .womika-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.about-section-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.aboutus-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-img {
    width: 100%;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.overlay-img {
    width: 60%;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 2;
    transition: all 0.5s ease;
}

.aboutus-image-container:hover .main-img {
    transform: rotate(-2deg) scale(1.02);
}

.aboutus-image-container:hover .overlay-img {
    transform: rotate(3deg) translateY(-10px);
}

.aboutus-content {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.aboutus-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.achievement-item {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: #1ebe5d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 190, 93, 0.3);
}

.achievement-item:hover .achievement-icon {
    color: white;
}

.achievement-icon {
    font-size: 1.2rem;
    color: #1ebe5d;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.aboutus-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.aboutus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 190, 93, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-section-description,
    .aboutus-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section-container {
        padding: 70px 0;
    }
    
    .about-section-header h2 {
        font-size: 1.8rem;
    }
    
    .overlay-img {
        width: 50%;
        bottom: -20px;
        right: -20px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-section-header h2 {
        font-size: 1.6rem;
    }
    
    .aboutus-image-container {
        margin-bottom: 50px;
    }
    
    .overlay-img {
        width: 60%;
        bottom: -30px;
        right: 0;
    }
}

/* about us end */


/* founder and director start */

 /* Founder & Director Section Styling */
 .founder-section, .director-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.founder-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.director-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
}

.highlight-text {
    color: #1ebe5d;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1ebe5d;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.section-header:hover .highlight-text::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-divider {
    width: 80px;
    height: 3px;
    background: #1ebe5d;
    margin: 15px auto 0;
    transition: all 0.5s ease;
}

.section-header:hover .header-divider {
    width: 120px;
}

/* Image Containers */
.founder-image-container, .director-image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-img, .director-img {
    width: 100%;
    transition: all 0.5s ease;
}

.image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease;
    border:none;
}

.image-wrapper:hover .founder-img,
.image-wrapper:hover .director-img {
    transform: scale(1.05);
}

.image-wrapper:hover .image-border {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-color: rgba(30, 190, 93, 0.8);
}

/* Info Text */
.founder-info, .director-info {
    margin-top: 30px;
}

.founder-name, .director-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.founder-title, .director-title {
    font-size: 1rem;
    color: #1ebe5d;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.founder-qualification, .director-qualification {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Content Styling */
.founder-content, .director-content {
    padding: 30px;
    position: relative;
}

.founder-quote {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 2rem;
    color: #1ebe5d;
    opacity: 0.3;
    position: absolute;
}

.fa-quote-left {
    top: -10px;
    left: -10px;
}

.fa-quote-right {
    bottom: -10px;
    right: -10px;
}

.founder-description, .director-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Achievements */
.founder-achievements, .director-achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: #1ebe5d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 190, 93, 0.3);
}

.achievement-item:hover .achievement-icon {
    color: white;
}

.achievement-icon {
    font-size: 1.2rem;
    color: #1ebe5d;
    margin-right: 10px;
    transition: all 0.3s ease;
}

/* Buttons */
.founder-more-btn, .director-more-btn {
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1ebe5d;
    border-color: #1ebe5d;
}

.btn-primary:hover {
    background: #169a4d;
    border-color: #169a4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 190, 93, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .founder-section, .director-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .founder-description, .director-description {
        font-size: 1rem;
    }
    
    .founder-achievements, .director-achievements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .founder-section, .director-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .founder-name, .director-name {
        font-size: 1.3rem;
    }
    
    .founder-content, .director-content {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .founder-info, .director-info {
        margin-top: 20px;
    }
    
    .image-wrapper {
        max-width: 300px;
    }
}


/* founder and director end */


/* service section start */
     /* Services Section Styling */
    .services-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        position: relative;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
    }
    
    .divider {
        width: 80px;
        height: 3px;
        background: #1ebe5d;
        margin: 0 auto 20px;
        transition: all 0.5s ease;
    }
    
    .section-header:hover .divider {
        width: 120px;
    }
    
    .section-header p {
        font-size: 1.1rem;
        color: #555;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    /* Service Card */
    .service-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .card-icon {
        background: linear-gradient(135deg, #1ebe5d, #169a4d);
        color: white;
        font-size: 2rem;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 30px auto 20px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .card-content {
        padding: 0 25px 20px;
        flex-grow: 1;
    }
    
    .card-content p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-features {
        list-style: none;
        padding: 0;
        margin: 15px 0;
    }
    
    .service-features li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 8px;
        font-size: 0.9rem;
        color: #555;
    }
    
    .service-features li:before {
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #1ebe5d;
    }
    
    .service-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1ebe5d;
        color: white;
        padding: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .service-btn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .service-btn:hover {
        background: #169a4d;
    }
    
    .service-btn:hover i {
        transform: translateX(5px);
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
        .services-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        }
    }
    
    @media (max-width: 992px) {
        .services-section {
            padding: 70px 0;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .section-header p {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 576px) {
        .services-section {
            padding: 60px 0;
        }
        
        .section-header h2 {
            font-size: 1.8rem;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }
    }
/* service section end */

/* service provide section start */

  /* Services Section Styling */
  .services-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
  }
  
  .divider {
    width: 80px;
    height: 3px;
    background: #1ebe5d;
    margin: 0 auto 20px;
    transition: all 0.5s ease;
  }
  
  .section-header:hover .divider {
    width: 120px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
  }
  
  /* Service Card */
  .service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
  }
  
  .service-card:hover .card-image img {
    transform: scale(1.05);
  }
  
  .card-content {
    padding: 25px;
    position: relative;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1ebe5d, #169a4d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    top: -30px;
    right: 25px;
    box-shadow: 0 5px 15px rgba(30, 190, 93, 0.3);
  }
  
  .service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-right: 70px;
  }
  
  .service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
  }
  
  .service-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #1ebe5d;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
  }
  
  @media (max-width: 992px) {
    .services-section {
      padding: 80px 0;
    }
    
    .section-header h2 {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }
    
    .card-image {
      height: 180px;
    }
  }
  
  @media (max-width: 576px) {
    .services-section {
      padding: 60px 0;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .service-icon {
      width: 50px;
      height: 50px;
      font-size: 1.3rem;
      top: -25px;
    }
  }


/* service provide section end */

/* gallery section start */

 /* Gallery Section Styling */
 .gallery-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
  }
  
  .divider {
    width: 80px;
    height: 3px;
    background: #1ebe5d;
    margin: 0 auto 20px;
    transition: all 0.5s ease;
  }
  
  .section-header:hover .divider {
    width: 120px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Gallery Grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  
  /* Gallery Item */
  .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .gallery-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  
  .gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover .gallery-image-container img {
    transform: scale(1.05);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .overlay-content {
    text-align: center;
    padding: 20px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .overlay-content {
    transform: translateY(0);
  }
  
  .overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
  }
  
  .view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1ebe5d;
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .view-btn:hover {
    background: #169a4d;
    transform: scale(1.1);
  }
  
  /* Gallery CTA */
  .gallery-cta {
    text-align: center;
    margin-top: 30px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    background: #1ebe5d;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: #169a4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 190, 93, 0.3);
  }
  
  .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .btn:hover i {
    transform: translateX(5px);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
  }
  
  @media (max-width: 992px) {
    .gallery-section {
      padding: 80px 0;
    }
    
    .section-header h2 {
      font-size: 2.2rem;
    }
    
    .gallery-image-container {
      height: 220px;
    }
  }
  
  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }
    
    .section-subtitle {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-section {
      padding: 60px 0;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .gallery-image-container {
      height: 250px;
    }
  }
/* gallery section end */

/* what we do start */

/* What We Do Section */
.do-section {
    padding: 100px 0;
    position: relative;
    background-color: #f9f9f9;
  }
  
  .do-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .do-section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .do-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
  }
  
  .do-section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #e74c3c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .do-section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .do-section-card {
    width: 48%;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .do-section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .do-section-card-item-row {
    display: flex;
    height: 100%;
  }
  
  .do-section-card-item-col {
    width: 50%;
  }
  
  .do-section-card-item-col-img {
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
  }
  
  .do-section-card-item-col-content {
    padding: 30px;
  }
  
  .do-section-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
  }
  
  .do-section-card-item-col-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .do-section-card {
      width: 100%;
    }
    
    .do-section-card-item-col-img {
      min-height: 200px;
    }
  }
  
  @media (max-width: 768px) {
    .do-section {
      padding: 60px 0;
    }
    
    .do-section-header {
      margin-bottom: 40px;
    }
    
    .do-section-header h2 {
      font-size: 28px;
    }
    
    .do-section-card-item-row {
      flex-direction: column;
    }
    
    .do-section-card-item-col {
      width: 100%;
    }
    
    .do-section-card-item-col-img {
      min-height: 200px;
      height: 200px;
    }
    
    .do-section-card-item-col-content {
      padding: 20px;
    }
    
    .do-section-card-title {
      font-size: 20px;
    margin-bottom: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .do-section-header h2 {
      font-size: 24px;
    }
    
    .do-section-card-item-col-img {
      min-height: 180px;
      height: 180px;
    }
    
    .do-section-card-item-col-content {
      padding: 15px;
    }
  }

  /* what we do end */

/* contact section start */

/* Contact Section */
#contact {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: -50px;
  }
  
  .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
  }
  
  /* .section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #50C878;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  } */
  
  .contact-content {
    padding: 30px 0;
  }
  
  .contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
  }
  
  .contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .address-list {
    list-style: none;
    padding: 0;
  }
  
  .address-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
  }
  
  .address-list i {
    font-size: 20px;
    color: #50C878;
    margin-right: 15px;
    margin-top: 3px;
  }
  
  .address-list span {
    color: black;
    line-height: 1.6;
  }
  
  .address-list b {
    color: #333;
    font-weight: 600;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
  }
  
  .form-control:focus {
    border-color: #50C878;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
  }
  
  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }
  
  .contact-submit {
    background-color: #50C878;
    border-color: #50C878;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
  }
  
  .contact-submit:hover {
    background-color: #50C878;
    border-color: #50C878;
    transform: translateY(-2px);
  }
  
  .contact-submit i {
    margin-right: 8px;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .contact-info, .contact-form {
      padding: 25px;
    }
  }
  
  @media (max-width: 767px) {
    #contact {
      padding: 60px 0;
    }
    
    .section-header {
      margin-bottom: 30px;
    }
    
    .section-header h2 {
      font-size: 28px;
    }
    
    .contact-info {
      margin-bottom: 30px;
    }
    
    .address-list li {
      margin-bottom: 15px;
    }
    
    .contact-submit {
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 575px) {
    .section-header h2 {
      font-size: 24px;
    }
    
    .contact-info, .contact-form {
      padding: 20px;
    }
    
    .address-list i {
      font-size: 18px;
      margin-right: 10px;
    }
  }

  /* contact section end */
/* footer start */

   /* Footer Styles */
   .footer-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 4rem 0 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.footer-main {
    padding-bottom: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-about {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-heading {
    color: #50C878;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #50C878;
}

.footer-subheading {
    color: #fff;
    font-size: 1rem;
    margin: 0.5rem 0;
    font-weight: 500;
}

.footer-address,
.footer-contact {
    margin: 0.5rem 0;
    color: #d1d1d1;
    font-size: 0.9rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #50C878;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #50C878;
    color: #fff;
    transform: translateY(-3px);
}

.footer-description {
    color: #d1d1d1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-copyright-area {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright,
.footer-credits {
    font-size: 0.8rem;
    color: #d1d1d1;
}

.footer-credits a {
    color: #50C878;
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-col {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-col {
        min-width: 100%;
    }

    .footer-copyright-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 3rem 0 0;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-links-list a,
    .footer-description,
    .footer-address,
    .footer-contact {
        font-size: 0.85rem;
    }
}
/* footer end */


/* Floating Social Buttons */
.social-buttons {
    position: fixed;
    left: 20px;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.social-buttons a{
    text-decoration: none;
}
.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
}

.sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign i {
    font-size: 20px;
    color: white;
}

.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.0em;
    font-weight: 600;
    transition-duration: .3s;
}

.Btn:hover {
    width: 125px;
    border-radius: 40px;
    transition-duration: .3s;
}

.Btn:hover .sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
}

.Btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
}

.Btn:active {
    transform: translate(2px ,2px);
}

.facebook { background-color: #1877F2; }
.linkedin { background-color: #1877F2; }
/* .instagram { background: linear-gradient(45deg, #833AB4, #E1306C, #FD1D1D); } */
.call { background-color: #34b7f1; }
.whatsapp { background-color: #50C878; }

@media (max-width: 768px) {
    .social-buttons {
        left: 10px;
        gap: 10px;
    }
    .Btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        left: 5px;
    }
    .Btn {
        width: 40px;
        height: 40px;
    }
}


/* process and parameter */


    
.beneficiation-process-parameters-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.beneficiation-process-parameters-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.beneficiation-process-parameters-section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.beneficiation-process-parameters-section-header h2::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 20%;
  border-radius: 2px;
}

.beneficiation-process-parameters-section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.beneficiation-process-parameters-content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.beneficiation-process-parameters-process-card, .beneficiation-process-parameters-parameters-card {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficiation-process-parameters-process-card:hover, .beneficiation-process-parameters-parameters-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.beneficiation-process-parameters-card-header {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: center;
}

.beneficiation-process-parameters-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.beneficiation-process-parameters-card-body {
  padding: 25px;
}

.beneficiation-process-parameters-process-list {
  list-style-type: none;
}

.beneficiation-process-parameters-process-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.beneficiation-process-parameters-process-list li:last-child {
  border-bottom: none;
}

.beneficiation-process-parameters-process-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.beneficiation-process-parameters-parameter-item {
  margin-bottom: 15px;
}

.beneficiation-process-parameters-parameter-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.beneficiation-process-parameters-parameter-name::before {
  content: '•';
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 10px;
}

.beneficiation-process-parameters-parameter-desc {
  color: #666;
  font-size: 0.95rem;
  padding-left: 25px;
}

@media (max-width: 768px) {
  .beneficiation-process-parameters-section-header h2 {
      font-size: 2rem;
  }
  
  .beneficiation-process-parameters-content-container {
      flex-direction: column;
  }
  
  .beneficiation-process-parameters-process-card, .beneficiation-process-parameters-parameters-card {
      min-width: 100%;
  }
}

@media (max-width: 480px) {
  .beneficiation-process-parameters-section-header h2 {
      font-size: 1.8rem;
  }
  
  .beneficiation-process-parameters-card-body {
      padding: 20px 15px;
  }
  
  .beneficiation-process-parameters-process-list li {
      padding: 10px 0;
      font-size: 0.95rem;
  }
}