.about-details-section {
    color: #D7FCFA;
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #D7FCFA) !important;

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;


        h2 {
            font-size: 40px;
            font-weight: 700;
            color: #14423E !important;
            text-align: right;
            margin-bottom: 50px;
        }

        .card-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;

            .card {
                width: 50%;
                height: 250px;
                background-color: #14423E;
                padding: 20px;
                border-radius: 50px;
                color: #14423E !important;
                text-align: right;
                z-index: 1;
                transition: all 0.3s ease;
                cursor: pointer;

                
                &:hover{
                    transform: scale(1.05);
                    transition: all 0.3s ease;
                    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
                }



                &::before {
                    content: '';
                    display: block;
                    position: absolute;
                    border-radius: 50px;
                    top: 5px;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: #fff;
                    z-index: -1;

                }
            }
        }

    }
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
    .about-details-section {
        padding: 80px 0;
        
        .container {
            h2 {
                font-size: 36px;
                margin-bottom: 40px;
            }
            
            .card-container {
                gap: 15px;
                
                .card {
                    height: 220px;
                    padding: 18px;
                }
            }
        }
    }
}

@media (max-width: 992px) {
    .about-details-section {
        padding: 60px 0;
        
        .container {
            h2 {
                font-size: 32px;
                margin-bottom: 35px;
            }
            
            .card-container {
                gap: 12px;
                
                .card {
                    height: 200px;
                    padding: 15px;
                    border-radius: 40px;
                    
                    &::before {
                        border-radius: 40px;
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .about-details-section {
        padding: 50px 0;
        
        .container {
            h2 {
                font-size: 28px;
                text-align: center !important;
                margin-bottom: 30px;
            }
            
            .card-container {
                flex-direction: column;
                gap: 20px;
                
                .card {
                    width: 100%;
                    height: auto;
                    min-height: 180px;
                    padding: 20px;
                    border-radius: 30px;
                    
                    &::before {
                        border-radius: 30px;
                    }
                    
                    .about-card {
                        .about-card-title {
                            font-size: 18px !important;
                        }
                        
                        p {
                            font-size: 14px !important;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .about-details-section {
        padding: 40px 0;
        
        .container {
            padding: 0 15px;
            
            h2 {
                font-size: 24px;
                margin-bottom: 25px;
            }
            
            .card-container {
                gap: 15px;
                
                .card {
                    padding: 15px;
                    border-radius: 25px;
                    min-height: 160px;
                    
                    &::before {
                        border-radius: 25px;
                    }
                    
                    .about-card {
                        .about-card-title {
                            font-size: 16px !important;
                        }
                        
                        p {
                            font-size: 12px !important;
                        }
                    }
                }
            }
        }
    }
}