.header {
    padding: 0 !important;
}

.features {
    background-image: url(../images/svg/bg-curve.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0 200px;
    background-position:  center;
}

.section-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 150px;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: #64b5f6;
}

.section-description {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.feature-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 50px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7227FC, #4F05D8);
    opacity: 0.7;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #ffffff;
}

.feature-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.video img{
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
}
.awards-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    
}
.awards-grid a img{
    width: 100%;
    justify-items: center;
    align-items: center;
}
/* =============================================VALUES SECTION================================================== */

.values-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.values-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: 50% 50% 0 0;
    animation: wave 6s ease-in-out infinite;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -20%;
    width: 140%;
    height: 150px;
    background: linear-gradient(90deg, transparent 0%, #0e0350 50%, transparent 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: glow 4s ease-in-out infinite alternate;
}

/* Animations */
@keyframes wave {
    0%, 100% { transform: translateY(0) scaleX(1); }
    50% { transform: translateY(-20px) scaleX(1.05); }
}

@keyframes glow {
    0% { opacity: 0.2; transform: translateX(-10px); }
    100% { opacity: 0.4; transform: translateX(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Typography */
.main-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.main-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Grid */
.values-grid {
    position: relative;
    z-index: 10;
}

/* Value Cards */
.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out;
}

.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.4s; }
.value-card:nth-child(3) { animation-delay: 0.6s; }
.value-card:nth-child(4) { animation-delay: 0.8s; }

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: all 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.value-card:hover .value-icon {
    animation: pulse 0.6s ease-in-out infinite;
}

/* Card Content */
.value-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.value-card:nth-child(1) .value-icon { animation-delay: 0s; }
.value-card:nth-child(2) .value-icon { animation-delay: 0.5s; }
.value-card:nth-child(3) .value-icon { animation-delay: 1s; }
.value-card:nth-child(4) .value-icon { animation-delay: 1.5s; }

.value-title {
    color: #00d4ff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.value-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 200;
}

/* Fade in animation */
.fade-in {
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-title {
        font-size: 2.5rem;
    }
    .value-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .main-title {
        font-size: 2.2rem;
    }
    .main-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    .value-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }
    .main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .main-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    .value-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    .value-icon {
        font-size: 2.5rem;
    }
    .value-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .values-section {
        padding: 40px 0;
    }
    .main-title {
        font-size: 1.8rem;
    }
    .main-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    .value-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    .value-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .value-title {
        font-size: 1.1rem;
    }
    .value-description {
        font-size: 0.9rem;
    }
}
/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-card:nth-child(5),
    .feature-card:nth-child(10) {
        grid-column: span 2;
        /* margin: 0 auto; */
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card:nth-child(5),
    .feature-card:nth-child(10) {
        grid-column: span 1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 13px;
    }
    .features {
    padding: 0 0 50px;
}
.section-title{
    margin-top: 50px;
}
.awards-grid{
        grid-template-columns: repeat(1, 1fr);
    }

    .awards-grid a img {
        width:70%;
        margin: 20px auto;
        display: block;
    }

}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }
}

/* Animation */
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(7) {
    animation-delay: 0.7s;
}

.feature-card:nth-child(8) {
    animation-delay: 0.8s;
}

.feature-card:nth-child(9) {
    animation-delay: 0.9s;
}

.feature-card:nth-child(10) {
    animation-delay: 1.0s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
