/*--------------------- global-css ---------------------*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary-yellow-: #ffd700;
  --primary-black-: #000000;
  --text-dark-: #1a1a1a;
  --accent-yellow-hover: #ffe44d;
  --text-gray- : #666666;
  --primary-white-: #FFFFFF;
  --shadow-soft-: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-strong-: 0 10px 15px rgba(0, 0, 0, 0.1);
}
body {
  line-height: 1.6;
}

.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
}

/*--------------------  Feature-section-2 css --------------------*/
.usp-features {
    padding: 20px 0px 64px 0px;
    background-color: var(--primary-white-);
    position: relative;
}
.usp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.875rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}
.usp-item:nth-child(1) {
    animation-delay: 0.1s;
}
.usp-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.usp-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.usp-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-yellow-);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.usp-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark-);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.usp-content {
    color: var(--text-gray-);
    font-size: 0.9375rem;
    line-height: 1.5;
}
.usp-content .usp-additional-description{
    margin-top: .5rem;
}
.usp-icon-wrapper svg {
    font-size: 1.75rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    width: 35px;
    height: 35px;
}




/* animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* responsiveness */
@media screen and (min-width: 480px) and (max-width: 1024px) {
.usp-features {
    padding: 40px 16px;
}
.usp-item {
padding: 0rem !important;;
}
}

@media (max-width: 992px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

}

@media (max-width: 1200px) {
    .usp-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
     .usp-container{
        padding: 0 1rem;
    }
}
@media (max-width: 480px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .usp-features {
        padding: 30px 0;
    }
    .usp-container{
        padding: 0 1rem;
    }
    .usp-item{
        padding:0rem;
    } 
    .usp-content {
        font-size:14px;
    }
  .usp-title {
    font-size: 1rem;
  }
 
}