* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* About Section Styling */
.about-section {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.image-wrapper {
    flex: 1;
    text-align: center;
    margin-right: 30px;
}

.about-image {
    max-width: 100%;
    border-radius: 10px;
    animation: fadeIn 1.2s ease;
}

.text-wrapper {
    flex: 2;
}

.about-title {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00e0d6;
    text-align: center;
    animation: fadeInDown 1s ease;
}

.about-description {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

.details-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Card Styling */
.detail-box {
    perspective: 1000px; /* Enable 3D space */
    margin: 20px;
}

.card {
    width: 250px;
    height: 350px;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d; /* Preserve 3D */
}

.card:hover {
    transform: rotateY(180deg); /* Flip effect on hover */
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hide the back face */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.card-back {
    transform: rotateY(180deg); /* Rotate the back face */
    padding: 15px;
}

.detail-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #00e0d6;
}

.detail-title {
    font-size: 24px;
    color: #00e0d6;
    margin-bottom: 15px;
}

.detail-text, .back-text {
    font-size: 16px;
    text-align: center;
}

.feature-list, .testimonial-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

/* Hover Effects for Feature Items */
.feature-item,
.testimonial-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, color 0.3s;
}

.feature-item:hover,
.testimonial-item:hover {
    transform: translateX(5px);
    color: #00e0d6; /* Change color on hover */
}

.feature-list li i {
    color: #00e0d6;
}

/* Animation Effects */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Animation (optional) */
@keyframes backgroundAnimation {
    0% {
        background-color: rgba(0, 0, 0, 0.1);
    }
    50% {
        background-color: rgba(0, 0, 0, 0.2);
    }
    100% {
        background-color: rgba(0, 0, 0, 0.1);
   
